private void ButtonAdd_Click(object sender, RoutedEventArgs e) { Window.AddContact ac = new Window.AddContact(this); ac.Show(); }
private void MenuItem_Modifier_Click(object sender, RoutedEventArgs e) { if (ListContact.SelectedItem != null) { Window.AddContact ac = new Window.AddContact(this, ((ContactModelView)ListContact.SelectedItem).Num); ac.Show(); } }