예제 #1
0
 public static ProgVar getInstance(string name)
 {
     if (instance == null)
     {
         instance = new ProgVar(name);
     }
     return(instance);
 }
예제 #2
0
        public MainWindow()
        {
            this.setConnection();
            progVar = new ProgVar();

            querySql = new QuerySql();

            InitializeComponent();

            //Надо переделать выгрузку кнопок более приятно
            //VisibleFirmFields("");


            //this.TabGrid.Background =
        }