?? optionpanetest.xml
字號(hào):
<?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>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -