Наследование: System.Windows.Forms.Form
Пример #1
0
 void IOutstationInstance.Shutdown()
 {
     if (form != null)
     {
         form.Close();
         form.Dispose();
         form = null;
     }
 }
Пример #2
0
        void IOutstationInstance.ShowForm()
        {
            if (this.form == null)
            {
                this.form = new OutstationForm(outstation, application, cache, handler, alias);
            }

            form.Show();
        }
 void IOutstationInstance.Shutdown()
 {
     if (form != null)
     {
         form.Close();
         form.Dispose();
         form = null;
     }
 }
        void IOutstationInstance.ShowForm()
        {
            if(this.form == null)
            {
                this.form = new OutstationForm(outstation, application, cache, handler, alias);
            }

            form.Show();
        }