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