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

21 lines
409 B
C#
Raw Normal View History

2024-07-20 03:07:21 +02:00
using Wino.Views.Abstract;
#if NET8_0
using Microsoft.UI.Xaml.Navigation;
#else
2024-07-20 23:32:39 +02:00
using Microsoft.UI.Xaml.Navigation;
2024-07-20 03:07:21 +02:00
#endif
namespace Wino.Views
{
public sealed partial class AccountManagementPage : AccountManagementPageAbstract
{
public AccountManagementPage()
{
InitializeComponent();
NavigationCacheMode = NavigationCacheMode.Enabled;
}
}
}