コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: GorelH/Agenda
 void mGestionEventView_Closed(object sender, EventArgs e)
 {
     mGestionEventView = null;
 }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: GorelH/Agenda
 private void gestion_Click(object sender, RoutedEventArgs e)
 {
     if (mGestionEventView == null)
     {
         mGestionEventView = new GestionEvenementView();
         mGestionEventView.Closed += new EventHandler(mGestionEventView_Closed);
     }
     mGestionEventView.Hide();
     mGestionEventView.Show();
 }