Exemplo n.º 1
0
 public void CloseRobot()
 {
     if (m_ManualRobot != null)
     {
         m_ManualRobot.Close();
     }
 }
Exemplo n.º 2
0
 private void ManualDebugForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     if (m_ManualRobot != null)
     {
         m_ManualRobot.Close();
     }
 }
Exemplo n.º 3
0
        public void CloseForm()
        {
            if (m_Robot != null)
            {
                m_Robot.Close();
            }

#if WithVisual
            if (m_VisualProcess != null)
            {
                m_VisualProcess.Dispose();
            }
#endif
            Profile.SaveConfigFile();
            this.Close();
        }