Files
Wino-Mail/Wino.Mail/Views/Account/AccountManagementPage.xaml.cs

21 lines
407 B
C#
Raw Normal View History

2024-07-12 21:45:42 +02:00
using Wino.Views.Abstract;
#if NET8_0
using Microsoft.UI.Xaml.Navigation;
#else
2024-04-18 01:44:37 +02:00
using Windows.UI.Xaml.Navigation;
2024-07-12 21:45:42 +02:00
#endif
2024-04-18 01:44:37 +02:00
namespace Wino.Views
{
public sealed partial class AccountManagementPage : AccountManagementPageAbstract
{
public AccountManagementPage()
{
InitializeComponent();
NavigationCacheMode = NavigationCacheMode.Enabled;
}
}
}