Beispiel #1
0
 private void todaysTickerWindow_FormClosed(object sender, FormClosedEventArgs e)
 {
     this.inPlayWindow = null;
 }
Beispiel #2
0
 private void todaysInPlayToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (this.inPlayWindow == null)
     {
         this.inPlayWindow = new InPlayWindow();
         this.inPlayWindow.MdiParent = this;
         this.inPlayWindow.FormClosed += new FormClosedEventHandler(this.todaysTickerWindow_FormClosed);
         this.inPlayWindow.Show();
     }
     else
     {
         this.inPlayWindow.Activate();
     }
 }