Ejemplo n.º 1
0
 public static FishingGroundForm GetInstance(string AOIGuid, SamplingForm Parent)
 {
     if (_instance == null)
     {
         _instance = new FishingGroundForm(AOIGuid, Parent);
     }
     return(_instance);
 }
Ejemplo n.º 2
0
 private void OnFormClosed(object sender, FormClosedEventArgs e)
 {
     _instance = null;
     global.SaveFormSettings(this);
 }