2

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

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

4

1 回答 1

0

基本上你可以知道一个窗口在 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>
于 2013-02-07T14:08:00.723 回答