hyphen.zul
来自「ZK是一个Ajax Java Web框架」· ZUL 代码 · 共 34 行
ZUL
34 行
<?xml version="1.0" encoding="UTF-8"?><!--hyphen.zul{{IS_NOTE Purpose: Description: History: Fri Sep 28 16:29:09 2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT}}IS_RIGHT--><window border="normal" width="100px"> <vbox id="result"> maxlength is 9: </vbox> <zscript><![CDATA[ String[] s = {"this is 9", "this is ten more to show", "this framework", "performance is everything"}; for (int j = 0; j < s.length; ++j) { Label l = new Label(s[j]); l.maxlength = 9; l.hyphen = true; l.parent = result; } ]]></zscript></window>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?