Files
modernkeepass/Win10App/Views/SettingsPageFrames/SettingsSavePage.xaml.cs
Geoffroy BONNEVILLE 14cd3ab57a WIP Windows 10
Dependencies finally installed
Removal of useless code
Big cleanup in XAML styles (override colors the correct way)
2020-04-29 16:39:20 +02:00

20 lines
574 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 SettingsSavePage
{
private SettingsSaveViewModel ViewModel { get; }
public SettingsSavePage()
{
InitializeComponent();
ViewModel = new SettingsSaveViewModel();
}
}
}