コード例 #1
0
ファイル: Builder.cs プロジェクト: aamartin2k/Watchdog
        static internal void Close()
        {
            _dbHandler = null;

            if (_guiForm.Created)
            {
                _guiForm.Close();
            }

            _guiForm = null;
        }
コード例 #2
0
ファイル: Builder.cs プロジェクト: aamartin2k/Watchdog
 static internal void Build()
 {
     _dbHandler = new DbHandler();
     _guiForm   = new GuiForm();
 }