参考别的机床制作了1个画面,能正常显示,现在的问题是,按用户键,出来的是白板,再按自定义键才出来画面,我添加了一幅png格式的图片后,按用户键就出现这幅图片,再按自定义就出来自己做的界面
现在想直接按用户键就出来自己做的界面,请问需要在配置文件里添加什么?
谢谢!
问题补充:
非常感谢rain god,可能我描述的不够清楚,我现在想实现按CUSTOM键直接切换到自定义的界面上,而不是图片
最佳答案
修改文件custom.com在路径下/hmisl/oem/sinumerik/hmi/proj/ custom.com
修改代码; Text on the caption bar of the form in the start screen
[Header]
Text=XXX
; Picture shown on the form in the start screen
[Picture]
Picture=XXX.png
;XXX改成你要的图片
而后在此路径下
/hmisl/oem/sinumerik/hmi/cfg/ 打开此文件systemconfiguration.ini
加入如下黄色部分一行
[areas]
AREA0500= name:=ComauSltf, dialog:=sltf2dialog, panel:=SlHdStdHeaderPanel
AREA0501= name:=Marking, dialog:=slmarkingdialog, panel:=SlHdStdHeaderPanel
AREA011=name:=XXX, dialog:=SlEsCustomDialog, panel:=SlHdStdHeaderPanel
在打开easyscreen.ini文件
修改
[STARTFILES]
StartFile02 = area:= XXX, dialog := SlEsCustomDialog, startfile := custom.com
这个时候你就按下CUSTOM键就调用 custom.com这个文件,就调出画面了
提问者对于答案的评价:
非常感谢
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc151969.html