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