W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
顏色選擇器控件使用戶能夠從可用范圍中選擇顏色,或通過指定RGB或HSB組合設(shè)置附加顏色。
JavaFX ColorPicker控件具有顏色選擇器,調(diào)色板和自定義顏色對話框窗口。
以下代碼使用空構(gòu)造函數(shù)和創(chuàng)建顏色選擇器控件顏色選擇器控件使用默認(rèn)顏色,即WHITE。
ColorPicker colorPicker1 = new ColorPicker();
我們還可以提供顏色常量作為當(dāng)前選擇的顏色。
ColorPicker colorPicker2 = new ColorPicker(Color.BLUE);
我們還可以提供網(wǎng)絡(luò)顏色值作為當(dāng)前選擇的顏色
ColorPicker colorPicker3 = new ColorPicker(Color.web("#EEEEEE"選擇器));
import javafx.application.Application; import javafx.event.ActionEvent; import javafx.scene.Scene; import javafx.scene.control.ColorPicker; import javafx.scene.layout.HBox; import javafx.scene.paint.Color; import javafx.scene.text.Text; import javafx.stage.Stage; public class Main extends Application { public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) { Scene scene = new Scene(new HBox(20), 400, 100); HBox box = (HBox) scene.getRoot(); final ColorPicker colorPicker = new ColorPicker(); colorPicker.setValue(Color.RED); final Text text = new Text("Color picker:"); text.setFill(colorPicker.getValue()); colorPicker.setOnAction((ActionEvent t) -> { text.setFill(colorPicker.getValue()); }); box.getChildren().addAll(colorPicker, text); stage.setScene(scene); stage.show(); } }
getCustomColors()方法返回創(chuàng)建的自定義顏色Color對象的ObservableList。
ObservableList<Color> customColors = colorPicker.getCustomColors(); colorPicker.setValue(customColors.get(index));
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: