Files
modernkeepass/ModernKeePass10/Views/SettingsPageFrames/SettingsDatabasePage.xaml.cs
Geoffroy BONNEVILLE 56d93a5187 Moved application code to the Application layer
Imported Win10 project
Code cleanup
WIP - Use common UWP services for Win8.1 and Win10
2020-04-06 20:20:45 +02:00

21 lines
590 B
C#

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
using ModernKeePass.ViewModels.ListItems;
namespace ModernKeePass.Views.SettingsPageFrames
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class SettingsDatabasePage
{
public SettingsDatabaseViewModel ViewModel { get; }
public SettingsDatabasePage()
{
InitializeComponent();
ViewModel = new SettingsDatabaseViewModel();
}
}
}