Пример #1
0
 void mGestionEventView_Closed(object sender, EventArgs e)
 {
     mGestionEventView = null;
 }
Пример #2
0
 private void gestion_Click(object sender, RoutedEventArgs e)
 {
     if (mGestionEventView == null)
     {
         mGestionEventView = new GestionEvenementView();
         mGestionEventView.Closed += new EventHandler(mGestionEventView_Closed);
     }
     mGestionEventView.Hide();
     mGestionEventView.Show();
 }