建立一個按鈕
建立 Button
很簡單:
Button sampleButton = new Button();
這將建立一個新的 Button
,裡面沒有任何文字或圖形。
如果你想用文字建立一個 Button
,只需使用以 String
為引數的建構函式(設定 Button
的 textProperty
):
Button sampleButton = new Button("Click Me!");
如果你想建立一個帶有圖形的 Button
或任何其他 Node
,請使用以下建構函式:
Button sampleButton = new Button("I have an icon", new ImageView(new Image("icon.png")));