b30-1985081.zul

来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 40 行

ZUL
40
字号
<?xml version="1.0" encoding="UTF-8"?><!--B30-1985081.zul{{IS_NOTE	Purpose:			Description:			History:		Fri Jun  6 17:38:32 TST 2008, Created by jumperchen}}IS_NOTECopyright (C) 2008 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><window title="select bug" border="normal">	Press the button, then the "Select Me!!!" label will be selected.<vbox><hbox id="hbox"><label id="lb" value="Select Me!!!"/></hbox><button label="press" onClick="onClick()"/></vbox><zscript>import org.zkoss.zul.Textbox;public void onClick(){Textbox tb = new Textbox();tb.setValue(lb.getValue());tb.setParent(hbox);lb.setVisible(false);tb.focus();tb.select();}</zscript></window>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?