2008年12月1日月曜日

ZK: Windowをスクリーントップを越えて移動させない


<window id="win" border="normal" title="隠れません!!"
mode="overlapped" width="350px" onMove="resetTop()">
<zscript><![CDATA[
void resetTop(){
String top = win.getTop();
if (top != null){
float winTop = Float.parseFloat((top.substring(0,top.lastIndexOf("px"))));
if (winTop < 0.0){
win.setTop(0 + "px");
}
}
}
]]></zscript>

<label value="ウィンドウはスクリーントップを越えて上には移動しません!!"/>
</window>

0 件のコメント: