Ejemplo n.º 1
0
 private void usEquityWindow_FormClosed(object sender, FormClosedEventArgs e)
 {
     this.usEquityWindow = null;
 }
Ejemplo n.º 2
0
 private void uSEquityToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     if (this.usEquityWindow == null)
     {
         this.usEquityWindow = new UsEquityWindow();
         this.usEquityWindow.MdiParent = this;
         this.usEquityWindow.FormClosed += new FormClosedEventHandler(this.usEquityWindow_FormClosed);
         this.usEquityWindow.Show();
     }
     else
     {
         this.usEquityWindow.Activate();
     }
 }