马上注册登录,享用更多网站功能!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
问题描述:
创建一个面板,在里面有Editor控件,要求在Editor1中显示曲线1,在Editor2中显示曲线2.我定义了两个Agent:_Curve1Agent,_Curve2Agent
_Curve1Agent= new CATFeatureImportAgent("Curve1Agent ",NULL,NULL,MfNoDuplicateFeature);$ j( |, I( A6 ~, r" W$ o& u
_Curve1Agent->SetOrderedElementType("CATIMfMonoDimResult");
_Curve1Agent->AddOrderedElementType("CATWire");
X/ ^3 m/ B8 K! S
_Curve1Agent->SetBehavior(CATDlgEngWithPSOHSO|CATDlgEngWithPrevaluation|CATDlgEngOneShot);
_Curve2Agent= new CATFeatureImportAgent("Curve2Agent ",NULL,NULL,MfNoDuplicateFeature);$ j( |, I( A6 ~, r" W$ o& u
_Curve2Agent->SetOrderedElementType("CATIMfMonoDimResult");
_Curve2Agent->AddOrderedElementType("CATWire");
X/ ^3 m/ B8 K! S
_Curve2Agent->SetBehavior(CATDlgEngWithPSOHSO|CATDlgEngWithPrevaluation|CATDlgEngOneShot);
我把两条曲线都以相同的形式定义了Agent,程序编译没有错误,也可以得到选择的曲线,并能在Editor中显示。但当我选择第一条曲线在Editor1中显示后,再选择第二条曲线,我希望它能在Editor2中显示,可它也在Editor1中显示了,原本显示的曲线1被替换了。
我不知道该如何通过代码来区分两条曲线,希望哪位高手能给我指点! |