mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -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
20 lines
467 B
C#
20 lines
467 B
C#
using System.ComponentModel;
|
|
using Windows.UI.Xaml;
|
|
using ModernKeePass.Common;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class RecentItemVm: NotifyPropertyChangedBase
|
|
{
|
|
private bool _isSelected;
|
|
public string Token { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public bool IsSelected
|
|
{
|
|
get { return _isSelected; }
|
|
internal set { SetProperty(ref _isSelected, value); }
|
|
}
|
|
}
|
|
}
|