Пример #1
0
 public void setToNull(object sender, EventArgs e)
 {
     if (sender is ScoreRecoView)
     {
         _scoreRecoView = null;
     }
     else if (sender is BaseActionConsultation)
     {
         _consultation = null;
     }
     else if (sender is RecoView)
     {
         _recommandation = null;
     }
     else if (sender is RepartitionView)
     {
         _repartition = null;
     }
     else if (sender is RepartitionValeurView)
     {
         _repartitionValeur = null;
     }
     else if (sender is SimulationScoreView)
     {
         _simulation = null;
     }
     else if (sender is DoublonsView)
     {
         _doublons = null;
     }
     else if (sender is ScoreChangeView)
     {
         _changementsScores = null;
     }
 }
Пример #2
0
 private void ConsultationMenu_Click(object sender, RoutedEventArgs e)
 {
     if (_consultation == null)
     {
         _consultation = new BaseActionConsultation();
         _consultation.Show();
         _consultation.Closed += new EventHandler(setToNull);
         _consultation.Focus();
     }
     else
     {
         _consultation.Focus();
     }
 }