gpt4 book ai didi

java - 检查 ZK Window 是否有焦点

转载 作者:行者123 更新时间:2023-11-29 09:06:28 25 4
gpt4 key购买 nike

如何检查 Window 当前是否具有“焦点”?

即检查它是否具有最高的 ZIndex。我可以使用 getZIndex() 但我仍然不知道它是否是最高的。

最佳答案

基本上你可以知道一个窗口在onClick和onMove时成为最顶层的,

例如,

<zk>
<window mode="overlapped" title="win one" border="normal" width="200px" height="150px">
<attribute name="onMove"><![CDATA[
((Label)self.getFirstChild()).setValue("My Zindex is the highest one");
((Label)self.getNextSibling().getFirstChild()).setValue("");
]]></attribute>
<attribute name="onClick"><![CDATA[
((Label)self.getFirstChild()).setValue("My Zindex is the highest one");
((Label)self.getNextSibling().getFirstChild()).setValue("");
]]></attribute>
<label value="" />
</window>
<window mode="overlapped" title="win two" border="normal" width="200px" height="150px">
<attribute name="onMove"><![CDATA[
((Label)self.getFirstChild()).setValue("My Zindex is the highest one");
((Label)self.getPreviousSibling().getFirstChild()).setValue("");
]]></attribute>
<attribute name="onClick"><![CDATA[
((Label)self.getFirstChild()).setValue("My Zindex is the highest one");
((Label)self.getPreviousSibling().getFirstChild()).setValue("");
]]></attribute>
<label value="" />
</window>
</zk>

关于java - 检查 ZK Window 是否有焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14732240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com