Ejemplo n.º 1
0
 public override void Show()
 {
     try
     {
         MainForm.Visible = true;
     }
     catch (ObjectDisposedException)
     {
         MainForm = new OrderStateForm(this);
         Load();
         MainForm.Visible = true;
     }
 }
Ejemplo n.º 2
0
 protected override void Constructor(string key, FBClient client, string type)
 {
     MainForm = new OrderStateForm(this);
     base.Constructor(key, client, type);
 }