java颜色选择器_JavaFX颜色选择器(ColorPicker)

本篇文章帮大家学习javaFX颜色选择器(ColorPicker),包含了JavaFX颜色选择器(ColorPicker)使用方法、操作技巧、实例演示和注意事项,有一定的学习价值,大家可以用来参考。

颜色选择器控件允许用户从可用的颜色范围中选择颜色,或通过指定RGB或HSB组合设置其他颜色。JavaFX ColorPicker控件具有颜色选择器,调色板和自定义颜色对话框窗口。

创建ColorPicker

以下代码使用空构造函数创建一个颜色选择器控件,颜色选择器控件使用默认颜色,即WHITE。

ColorPicker colorPicker1 = new ColorPicker();

还可以提供颜色常量作为当前选择的颜色。

ColorPicker colorPicker2 = new ColorPicker(Color.BLUE);

还可以提供网络颜色值作为当前选择的颜色

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()方法返回创建的自定义颜色作为Color对象的ObservableList。

ObservableList customColors = colorPicker.getCustomColors();

colorPicker.setValue(customColors.get(index));

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值