Exemple #1
0
        public static bool IsFormSegmentedConstructionOpen(String strNetworkName)
        {
            FormSegmentedConstruction formTemp = listFormSegmentedConstruction.Find(delegate(FormSegmentedConstruction form) { return(form.Tag.ToString() == strNetworkName); });

            if (formTemp != null)
            {
                formTemp.Focus();
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemple #2
0
 public static void AddFormSegmentedConstruction(FormSegmentedConstruction form)
 {
     listFormSegmentedConstruction.Add(form);
 }
Exemple #3
0
 public static void RemoveFormSegmentedConstruction(FormSegmentedConstruction form)
 {
     listFormSegmentedConstruction.Remove(form);
 }