mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
New boolean to visibility converter Base class to handle property changes notifications for all View Models Template selector to handle a different first item in listviews or gridviews
17 lines
441 B
C#
17 lines
441 B
C#
using System.Linq;
|
|
using ModernKeePass.Common;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class MainVm : NotifyPropertyChangedBase
|
|
{
|
|
private IOrderedEnumerable<IGrouping<int, MainMenuItemVm>> _mainMenuItems;
|
|
|
|
public IOrderedEnumerable<IGrouping<int, MainMenuItemVm>> MainMenuItems
|
|
{
|
|
get { return _mainMenuItems; }
|
|
set { SetProperty(ref _mainMenuItems, value); }
|
|
}
|
|
}
|
|
}
|