|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
我做了一个对话框,里面有两个editor(editor1,editor2),我设了一个变量,当鼠标选中editor1时,变量值为1,选中editor2时为2。我的程序如下:
editorAgent= new CATDialogAgent("_Surface Agent");
_editorAgent->AcceptOnNotify ( DlgBox->GetEditor(1), DlgBox->GetEditor(1)->GetEditFocusInNotification());
CATDialogState *stState1 = GetInitialState("Surface");
stState1 -> AddDialogAgent (_editorAgent);
AddTransition( stState1, stState1,
IsOutputSetCondition (_editorAgent),
Action ((ActionMethod) &SimGridCmd::SetActive1));
SetActive1的函数体就一句: DlgBox->SetActiveFlg(1);
SetActiveFlg就是将1赋给变量。
可是我只要以选中一个editor,CATIA就会关闭。
请问还漏掉什么吗? |
|