b35-2182972.zul

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

ZUL
47
字号
<?xml version="1.0" encoding="UTF-8"?><!--B35-2182972.zul{{IS_NOTE	Purpose:			Description:			History:		Fri Oct 24 12:13:41     2008, Created by jumperchen}}IS_NOTECopyright (C) 2008 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><zk>	Please test each mode ("Overlap, Popup, Embed, and Modal") with title and border, or not.	It should be looked well.<window id="win" border="normal" width="350px" title="abc"><button label="Overlap" onClick="win.doOverlapped();"/><button label="Popup" onClick="win.doPopup();"/><button label="Embed" onClick="win.doEmbedded();"/><button label="Modal" onClick="win.doModal();"/><button label="Title on/off"><attribute name="onClick">	if ("".equals(win.getTitle())) {		win.setTitle("Title");	} else 		win.setTitle("");</attribute></button><button label="Border on/off"><attribute name="onClick">	if ("normal".equals(win.getBorder())) {		win.setBorder("none");	} else 		win.setBorder("normal");</attribute></button></window></zk>					

⌨️ 快捷键说明

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