예제 #1
0
 internal void CloseForm()
 {
     if (fForm != null)
     {
         fForm = null;
     }
 }
예제 #2
0
 public void Execute()
 {
     if (!fHost.IsWidgetActive(this))
     {
         fForm = new DataQualityWidget(this);
         fForm.Show();
     }
     else
     {
         fForm.Close();
     }
 }