Improved shell experience.
This commit is contained in:
@@ -7,6 +7,6 @@ public abstract class CalendarAppShellAbstract : BasePage<CalendarAppShellViewMo
|
||||
{
|
||||
protected CalendarAppShellAbstract()
|
||||
{
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Enabled;
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,6 +7,6 @@ public abstract class CalendarPageAbstract : BasePage<CalendarPageViewModel>
|
||||
{
|
||||
protected CalendarPageAbstract()
|
||||
{
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Enabled;
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@ public abstract class ContactsAppShellAbstract : BasePage
|
||||
{
|
||||
protected ContactsAppShellAbstract()
|
||||
{
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Enabled;
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
using Microsoft.UI.Xaml.Navigation;
|
||||
using Wino.Mail.WinUI;
|
||||
using Wino.Mail.ViewModels;
|
||||
|
||||
namespace Wino.Views.Abstract;
|
||||
|
||||
public abstract class ContactsPageAbstract : BasePage<ContactsPageViewModel> { }
|
||||
public abstract class ContactsPageAbstract : BasePage<ContactsPageViewModel>
|
||||
{
|
||||
protected ContactsPageAbstract()
|
||||
{
|
||||
NavigationCacheMode = NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,6 +7,6 @@ public abstract class MailAppShellAbstract : BasePage<MailAppShellViewModel>
|
||||
{
|
||||
protected MailAppShellAbstract()
|
||||
{
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Enabled;
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
using Microsoft.UI.Xaml.Navigation;
|
||||
using Wino.Mail.WinUI;
|
||||
using Wino.Mail.ViewModels;
|
||||
|
||||
namespace Wino.Views.Abstract;
|
||||
|
||||
public partial class MailListPageAbstract : BasePage<MailListPageViewModel>;
|
||||
public partial class MailListPageAbstract : BasePage<MailListPageViewModel>
|
||||
{
|
||||
protected MailListPageAbstract()
|
||||
{
|
||||
NavigationCacheMode = NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
using Microsoft.UI.Xaml.Navigation;
|
||||
using Wino.Mail.WinUI;
|
||||
using Wino.Core.ViewModels;
|
||||
|
||||
namespace Wino.Views.Abstract;
|
||||
|
||||
public abstract class SettingsPageAbstract : BasePage<SettingsPageViewModel> { }
|
||||
public abstract class SettingsPageAbstract : BasePage<SettingsPageViewModel>
|
||||
{
|
||||
protected SettingsPageAbstract()
|
||||
{
|
||||
NavigationCacheMode = NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,6 +6,6 @@ public abstract class WinoAppShellAbstract : BasePage<WinoAppShellViewModel>
|
||||
{
|
||||
protected WinoAppShellAbstract()
|
||||
{
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Enabled;
|
||||
NavigationCacheMode = Microsoft.UI.Xaml.Navigation.NavigationCacheMode.Disabled;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user