optionpanetest.xml

来自「在流览器上仿CS界面的JAVASCRIPT脚本」· XML 代码 · 共 34 行

XML
34
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?