...
윈도우 스타일 설정
펼치기 | ||
---|---|---|
| ||
1.iMgt에서 설정방법
1.1 옵션설정→WindowStyle 값이 아래와같이 입력 후 저장
{"Title":"i-MATRIX계발계","TitleIconURL":"/extention/imatrix6/icon/rigth.png","TitleBrush":"#FFC2D3E5" ,"BorderBrush":"#FF333D40","BorderThickness":1,"TitleHeight":32,"GridMargin":"0,0,0,0","WindowBackground":"#FFFFFF" ,"LayoutBorderThickness":"0,2,0,0","WindowButtonForeground":"#FF332C40","LayoutBorderColor":"#FF332D40", "WindowTitleIconForground":"#000000"}
2. viewerex.jsp에서 설정방법
코드 블럭 | ||||
---|---|---|---|---|
| ||||
var SetiMATRIXPropertyEx = function(obj) { try { // Title: 윈도우타이틀명, //TitleIconURL : 아이콘 url, //TitleBrush: 타이틀 배경색, //BorderBrush: 윈도우 테두리 색, //BorderThickness: 테두리 두께, //TitleHeight: 타이틀 높이, //GridMargin : 메인 그리드 Margin (왼쪽,위,오른쪽,아래) //WindowBackground : i-Portal 배경색 //LayoutBorderThickness : 타이틀 아래 영역 보더 두께 // LayoutBorderColor : 타이틀 아래 영역 보더 색상 //WindowButtonForeground : 타이틀바 영역 버튼 색상 //WindowTitleIconForground : 타이틀 폰트 색상 obj.Property.WindowStyle = "{\"Title\":\"i-MATRIX계발계\",\"TitleIconURL\":\"/extention/imatrix6/icon/rigth.png\",\"TitleBrush\":\"#FFC2D3E5\" ,\"BorderBrush\":\"#FF333D40\",\"BorderThickness\":1,\"TitleHeight\":32,\"GridMargin\":\"0,0,0,0\",\"WindowBackground\":\"#FFFFFF\" ,\"LayoutBorderThickness\":\"0,2,0,0\",\"WindowButtonForeground\":\"#FF332C40\",\"LayoutBorderColor\":\"#FF332D40\", \"WindowTitleIconForground\":\"#000000\"}"; }catch(e){ console.log("i-MATRIX6 ViewerEX event[SetiMATRIXPropertyEx] js err::" + e.message); } } |
...