예제 #1
0
        void OpenForm()
        {
            if (form == null)
            {
                form = new OutstationForm(outstation, application, cache, handler, alias);
            }

            form.Show();
        }
예제 #2
0
 void ISimulatorNode.Remove()
 {
     if (form != null)
     {
         form.Close();
         form.Dispose();
         form = null;
     }
     outstation.Shutdown();
 }