Exemplo n.º 1
0
 private void mi_ViewMatrix_Click(object sender, EventArgs e)
 {
     if (m_matrix == null)
     {
         m_matrix             = new FixedTrace();
         m_matrix.Location    = m_matrix_location;
         m_matrix.FormClosed += MatrixTrace_Closed;
         m_matrix.MdiParent   = this;
         m_matrix.Show();
     }
     else if (m_matrix.WindowState == FormWindowState.Minimized)
     {
         m_matrix.WindowState = FormWindowState.Normal;
     }
 }
Exemplo n.º 2
0
 private void mi_ViewMatrix_Click(object sender, EventArgs e)
 {
     if (m_matrix == null)
     {
         m_matrix = new FixedTrace();
         m_matrix.Location = m_matrix_location;
         m_matrix.FormClosed += MatrixTrace_Closed;
         m_matrix.MdiParent = this;
         m_matrix.Show();
     }
     else if (m_matrix.WindowState == FormWindowState.Minimized)
         m_matrix.WindowState = FormWindowState.Normal;
 }
Exemplo n.º 3
0
 private void MatrixTrace_Closed(object sender, FormClosedEventArgs e)
 {
     m_matrix_location = m_matrix.Location;
     m_matrix = null;
 }
Exemplo n.º 4
0
 private void MatrixTrace_Closed(object sender, FormClosedEventArgs e)
 {
     m_matrix_location = m_matrix.Location;
     m_matrix          = null;
 }