스타일 팝업 예시 화면이다.
관련 API로 modifypopupstyle, setpopupdragarea가 있다.
템플릿 위치: /HTML5/SCREEN/POPUP/popup_style_screen
템플릿 파일
// "modifypopupstyle" 버튼 이벤트 function btn_modifypopupstyle_on_mouseup(objInst) { screen.modifypopupstyle(this.chk_Title.getcheck(), this.chk_Close.getcheck(), this.chk_MIN.getcheck(), this.chk_MAX.getcheck()); } // "setpopupdragarea" 버튼 이벤트 function btn_setpopupdragarea_on_mouseup(objInst) { screen.setpopupdragarea(this.fld_l.gettext(), this.fld_t.gettext(), this.fld_r.gettext(), this.fld_b.gettext()); }