各位大哥,小弟我刚学习EM-PLANT不久,我是一直照着eM-Plant+7.0系统模拟(培训教程)这个教程来学的,现在学到最后阶段也就是在Dialog这里出了问题。我按照要求编写了对话框。对话框里设置了四个按钮。他们分别是《启动模拟》、《停止模拟》、《重置》、《初始化》。名称分别是:Start、Stop、Reset、Init。我修改的Callback Method 如下:
; h8 P+ F# v ?. V7 A(action : string)
1 \; t* P) f- J5 ]" E Mis2 ]- [1 Z/ Q9 @. U* k
do
) I. J; U, T& r inspect action- ^4 p: I% x" k6 ?- I
when "Open" then
, s) z, f b& ?7 b+ l% x6 q -- TODO: add code for the "Open" action here
I/ o! q0 ~ C) f7 z9 R1 ^2 i when "Apply" then
$ X9 I5 O+ r: S5 d1 | -- TODO: add code for the "Apply" action here
3 v* T7 G0 \" j7 O' K, X* N when "Close" then" M9 ]' z% g/ P1 J4 a; t# U
-- TODO: add code for the "Close" action here
+ D/ R/ N8 t/ k8 z# w) ~1 M0 F when "start" then .Trainning_Model1.plant5.EventController.start;
% e# K, v9 D p% |' h3 S5 l when "stop" then .Trainning_Model1.plant5.EventController.stop;1 x, u. ^2 Z- N% `. {/ r" D
when "reset" then .Trainning_Model1.plant5.EventController.reset;
1 ^ B- r: r5 S9 y& o6 @! l4 h5 i when "Init" then .Trainning_Model1.plant5.EventController.init;& |; @% [6 L4 U$ ?
end;
* l# O8 j3 ]3 e$ p3 L; eend;% B6 o/ N R: i5 Y
当我从对话框点击《启动模拟》,模型确怎么也不会动。我找了好久原因都没有找着。也尝试着在本模型中设置Dialog .结果还是一样,特请各位大哥帮忙。谢谢! |