mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Drag drop finally works
WIP item background New Donate page stub Renamed some classes as services
This commit is contained in:
@@ -47,7 +47,14 @@ namespace ModernKeePass.ViewModels
|
||||
{
|
||||
var menuItems = new ObservableCollection<ListMenuItemVm>
|
||||
{
|
||||
new ListMenuItemVm { Title = "New", Group = "Application", SymbolIcon = Symbol.Add, PageType = typeof(SettingsNewDatabasePage) }
|
||||
new ListMenuItemVm
|
||||
{
|
||||
Title = "New",
|
||||
Group = "Application",
|
||||
SymbolIcon = Symbol.Add,
|
||||
PageType = typeof(SettingsNewDatabasePage),
|
||||
IsSelected = true
|
||||
}
|
||||
};
|
||||
if (database?.Status == 2)
|
||||
{
|
||||
@@ -56,8 +63,7 @@ namespace ModernKeePass.ViewModels
|
||||
Title = "General",
|
||||
Group = "Database",
|
||||
SymbolIcon = Symbol.Setting,
|
||||
PageType = typeof(SettingsDatabasePage),
|
||||
IsSelected = true
|
||||
PageType = typeof(SettingsDatabasePage)
|
||||
});
|
||||
menuItems.Add(new ListMenuItemVm
|
||||
{
|
||||
|
Reference in New Issue
Block a user