各位大哥,小弟我刚学习EM-PLANT不久,我是一直照着eM-Plant+7.0系统模拟(培训教程)这个教程来学的,现在学到最后阶段也就是在Dialog这里出了问题。我按照要求编写了对话框。对话框里设置了四个按钮。他们分别是《启动模拟》、《停止模拟》、《重置》、《初始化》。名称分别是:Start、Stop、Reset、Init。我修改的Callback Method 如下:
1 B: V0 W* N" ~4 _% e+ R5 n+ Q2 ^(action : string): s4 T" G* `8 h. g- {, q
is
8 i& b, D7 X+ J1 m; Wdo7 e5 a {& S- K
inspect action
^4 _4 I+ j4 k when "Open" then( N2 G e" _' y0 S( B1 _* q
-- TODO: add code for the "Open" action here2 V# H, ^( T9 t0 p5 o& i
when "Apply" then, t) Q9 ` O' i6 A) D" S
-- TODO: add code for the "Apply" action here7 Y: k4 m- V, }' \( [
when "Close" then1 c2 d2 A3 I7 |
-- TODO: add code for the "Close" action here1 I/ J5 K3 s$ w
when "start" then .Trainning_Model1.plant5.EventController.start;0 ^: Q$ G8 i8 |0 [
when "stop" then .Trainning_Model1.plant5.EventController.stop;
- }5 z6 L3 k( _4 b8 I) \$ x: i; C when "reset" then .Trainning_Model1.plant5.EventController.reset;8 Z0 v) D: \, b7 @4 X/ @) Q# P
when "Init" then .Trainning_Model1.plant5.EventController.init;
- p) W) N! K4 r# E3 ~ end;" ~, H, h; X! Q& z
end;
/ c# c1 V' E( n6 _当我从对话框点击《启动模拟》,模型确怎么也不会动。我找了好久原因都没有找着。也尝试着在本模型中设置Dialog .结果还是一样,特请各位大哥帮忙。谢谢! |