mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Finished Password User Control
Recent and Open now use this control
This commit is contained in:

committed by
BONNEVILLE Geoffroy

parent
324553c58c
commit
6d69dd4d15
@@ -1,8 +1,19 @@
|
||||
namespace ModernKeePass.Models
|
||||
using System.ComponentModel;
|
||||
using Windows.UI.Xaml;
|
||||
|
||||
namespace ModernKeePass.Models
|
||||
{
|
||||
public class RecentItem
|
||||
public class RecentItem: INotifyPropertyChanged
|
||||
{
|
||||
public string Token { get; set; }
|
||||
public string Name { get; set; }
|
||||
public Visibility PasswordVisibility { get; set; } = Visibility.Collapsed;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
public void NotifyPropertyChanged(string propertyName)
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user