コード例 #1
0
ファイル: FormSchedulerConfig.cs プロジェクト: ewin66/Monitor
        public void ShowAddDialog(ISchedulerType type)
        {
            Text     = "新增调度模块";
            mIsOk    = false;
            mManager = type.SystemContext.SchedulerConfigManager;
            mType    = type;
            mConfig  = null;

            if (type.Verify(ACOpts.Manager_Add, false))
            {
                InitTypeList(mManager.SystemContext);
                if (InitDialog())
                {
                    ShowDialog();
                }
            }
        }