コード例 #1
0
ファイル: AttendantWindow.cs プロジェクト: testman13/EDCB
 protected virtual void JumpTabAndHide(CtxmCode code, object item)
 {
     if (item == null)
     {
         return;
     }
     //
     mainWindow.RestoreMinimizedWindow();
     mainWindow.Dispatcher.BeginInvoke(new Action(() =>
     {
         SetHideWindow(this);
         MinimizeWindows();
         MenuUtil.JumpTab(item, code);
     }));
 }
コード例 #2
0
ファイル: CmdExe.cs プロジェクト: friendgo777/EDCB
 protected virtual void mcs_JumpTab(CtxmCode trg_code)
 {
     MenuUtil.JumpTab(mcs_GetJumpTabItem(trg_code), trg_code);
     IsCommandExecuted = true;
 }