2009年1月7日水曜日

JavaFX TextBox (scene.control)

Swing の TextField も使えるが、 JavaFX のクラスで TextBox が用意されている


import javafx.scene.control.*;
import javafx.scene.*;
import javafx.stage.*;
Stage {
scene: Scene {
content: TextBox {
text: "Hello World"
columns: 12
selectOnFocus: true
}
}
}


変数には
coulmns : Number
editable : Boolean
selectOnFocus : Boolean
text : String (編集と同時に update)
value : String (focus lost 時 or Enter press 時に update)

0 件のコメント:

コメントを投稿