팝업샘플 스타일 화면 가이드
스타일 팝업 예시 화면이다.
관련 API로 modifypopupstyle, setpopupdragarea가 있다.
예시
템플릿 위치: /HTML5/SCREEN/POPUP/popup_style_screen
템플릿 파일
화면 스크립트
1 2 3 4 5 6 7 8 9 10 11 |
// "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()); } |