Esempio n. 1
0
 internal void CloseForm()
 {
     if (fForm != null)
     {
         fForm = null;
     }
 }
Esempio n. 2
0
 public override void Execute()
 {
     if (!Host.IsWidgetActive(this))
     {
         fForm = new GWTreeForm(this);
         fForm.Show();
     }
     else
     {
         fForm.Close();
     }
 }