Inheritance: System.Windows.Forms.Form
Exemplo n.º 1
0
        void OpenForm()
        {
            if (form == null)
            {
                form = new MasterForm(master, cache, alias);
            }

            form.Show();
        }
Exemplo n.º 2
0
 void ISimulatorNode.Remove()
 {
     if (form != null)
     {
         form.Close();
         form.Dispose();
         form = null;
     }
     master.Shutdown();
 }