📄 optionpanetest.xml
字号:
<?xml version="1.0"?><!-- This mimics a notepad dialog using the option pane--><Application> <Window caption="Option Pane Test" width="320" height="128" centered="true"/> <Resources> <Script><![CDATA[function OptionPaneTest() { var win = application.getWindow(); win.setSize(320, 128) var s = "The text in the C:\\document.txt file has changed.\n\nDo you want to save the changes?"; var op = new BiOptionPane(s, "warning", "yesnocancel", null, null, null); win.add( op ); op.setLocation(0, 0); op.setRight(0); op.setBottom(0);}OptionPaneTest.main = function () { new OptionPaneTest; }; ]]></Script> </Resources></Application>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -