Supprimer 'Qwirkle/cm7/cm7.cs'
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
c5027304b0
commit
34bcd34884
@ -1,28 +0,0 @@
|
|||||||
// DataBinding Baby !!
|
|
||||||
|
|
||||||
// Applcation se basant sur le site wtatennis.com
|
|
||||||
|
|
||||||
// class : Player, Place (Birth Places), Manager, IPersistanceManager
|
|
||||||
// enum : Hand (lfet-handed or right-handed)
|
|
||||||
|
|
||||||
// Player.cs
|
|
||||||
|
|
||||||
public string FirstName
|
|
||||||
{
|
|
||||||
get => firstName;
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if(value == firstName) return;
|
|
||||||
firstName = value;
|
|
||||||
OnPropertyChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private string firstName;
|
|
||||||
|
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
|
||||||
|
|
||||||
public void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
||||||
{
|
|
||||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
||||||
}
|
|
Loading…
Reference in new issue