■プログラム説明(ソースコード説明)
ウィンドウのサイズを可変にするかどうか、クローズボタンを付けるかどうかなどを設定することができます。Window()の4番目のパラメータにオプションを指定します。以下のものが指定できます。
プロパティ名 |
設定できる値 |
デフォルト値 |
resizeable |
trueまたはfalse。trueでリサイズ可能 |
false |
closeButton |
trueまたはfalse。trueであり。 |
true |
maximizeButton |
trueまたはfalse。trueであり。 |
true |
minimizeButton |
trueまたはfalse。trueであり。 |
true |
independent |
trueまたはfalse。trueでBridgeがインアクティブになってもウィンドウが消えない。 |
false |
■ソースコード
#target "Bridge"
winObj = new Window("window","Sample",[100,50,300,200],{resizeable:true, closeButton:true, maximizeButton:true, minimizeButton:true, independent:true} );
winObj.show();