mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00

Dependencies finally installed Removal of useless code Big cleanup in XAML styles (override colors the correct way)
21 lines
590 B
C#
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();
|
|
}
|
|
}
|
|
}
|