Namelist to navbar
This commit is contained in:
@@ -78,8 +78,8 @@ namespace Apollon.WPF.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
private string _birthday;
|
||||
public string Birthday
|
||||
private DateTime _birthday;
|
||||
public DateTime Birthday
|
||||
{
|
||||
get
|
||||
{
|
||||
@@ -119,5 +119,19 @@ namespace Apollon.WPF.ViewModels
|
||||
OnPropertyChanged(nameof(Qualification));
|
||||
}
|
||||
}
|
||||
|
||||
private bool _isreadOnly;
|
||||
public bool IsReadOnly
|
||||
{
|
||||
get
|
||||
{
|
||||
return _isreadOnly;
|
||||
}
|
||||
set
|
||||
{
|
||||
_isreadOnly = value;
|
||||
OnPropertyChanged(nameof(IsReadOnly));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user