TextField
TextFieldは、一行のテキストを入力するためのコントロールです。TextFieldから入力した値をプログラムの中で利用します。
- 1 :
2 :
3 :
4 :
5 :
6 :
7 :
8 :
9 :
10 :
11 :
12 :
13 :
14 :
15 :
16 :
17 :
18 :
19 :
20 :
21 :
22 :
23 :
24 :
25 :
26 :
27 :
28 :
29 :
30 :
31 :
32 :
33 :
34 :
35 :
36 :
37 : -
import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.TextField; import javafx.scene.layout.VBox; import javafx.stage.Stage; public class JavaFX_TextField extends Application{ public static void main(String... args){ Application.launch(args); } public void start(Stage stage) throws Exception { // TextFieldを作成 TextField text = new TextField(); text.setMaxWidth( 100 ); // レイアウト VBox vbox = new VBox(); vbox . getChildren().addAll(text); vbox . setPadding( new Insets( 20 , 20 , 20 , 20) ); // Stageの調整 stage . setTitle( "TextField" ); stage . setWidth( 300 ); stage . setHeight( 200 ); stage . setScene( new Scene( vbox ) ); stage . show(); } }
実行結果
バインド
TextFieldの入力値をLabelにバインドすることが可能です。
<< Labelのバインドについてはこちらへ >>
TextFieldのAliginmentを設定
TextFieldにAlignmentを設定して、入力値を「右寄せ」「中央寄せ」「左寄席」のいづれかで表示することが可能です。
<< TextFieldのAliginmentを設定についてはこちらへ >>
PromptText設定
TextFieldにはPromptTextを設定するこが可能です。
<< TextFieldのPromptText設定についてはこちらへ >>