コード例 #1
0
 public PersonViewModelEventArgs(PersonViewModel person = null)
 {
     this.Person = person;
     Index = -1;
 }
コード例 #2
0
 public PersonViewModelEventArgs(PersonViewModel person, int index)
 {
     this.Person = person;
     Index = index;
 }
コード例 #3
0
 public AddNewPersonDialog()
 {
     TempPerson = new PersonViewModel(new Gast());
     DataContext = this;
     InitializeComponent();
 }