⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 annot.zul

📁 非常接近C/S操作方式的Java Ajax框架-ZK 用ZK框架使你的B/S应用程序更漂亮更易操作。 官网:www.zkoss.org
💻 ZUL
字号:
<?xml version="1.0" encoding="UTF-8"?><!--annot.zul{{IS_NOTE	Purpose:			Description:			History:		Fri Nov  3 12:16:26     2006, Created by tomyeh}}IS_NOTECopyright (C) 2006 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><zk xmlns:a="http://www.zkoss.org/2005/zk/annotation"><a:author name="John Magic" date="3/17/2006"/><a:editor name="Mary White" date="4/11/2006"/><window id="main" title="Annotation" >	<a:bind field="value"/>	<a:bind source="bigcat:1099"/>	<textbox id="t1"/>	<textbox id="t2">		<a:hello say="hi"/>		<attribute name="value">Hello</attribute>	</textbox>	<textbox id="t3" a:mark="color='blue',shape='round'" value=""/>	<zscript>	void dump(StringBuffer sb, Component comp) {		sb.append(comp.getId()).append(": ")		  .append(comp.getAnnotations().toString())		  .append('\n');		for (Iterator it = comp.getAnnotatedProperties().iterator();		it.hasNext();) {			String prop = it.next();			sb.append(" with ").append(prop).append(": ")				.append(comp.getAnnotations(prop))				.append('\n');		}		for (Iterator it = comp.getChildren().iterator(); it.hasNext();)			dump(sb, it.next());	}	Datebox db = new Datebox();	db.addAnnotation("datebox", null);	db.setParent(main);	</zscript>	<button label="show">		<attribute name="onClick"><![CDATA[		StringBuffer sb = new StringBuffer(256);		dump(sb, main);		info.setValue(sb.toString());		]]></attribute>	</button>	<separator bar="true"/>	<label id="info" pre="true"/></window></zk>

⌨️ 快捷键说明

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