ZK3.버전 0.2의 새로운 기능

619 단어 thread
연산 시간이 비교적 긴 프로그램 코드를 실행할 때 사용자에게 적당한 알림 정보를 줄 수 있다
 
<window id="w" width="200px" title="Test echoEvent" border="normal">
  <attribute name="onLater">
    Thread.sleep(5000);
    Clients.showBusy(null, false);
    new Label("  .").setParent(w);
  </attribute>

  <button label="  ">
    <attribute name="onClick">
      Clients.showBusy("     5  ... ", true);
      Events.echoEvent("onLater", w, null);
    </attribute>
  </button>
</window>

 

좋은 웹페이지 즐겨찾기