广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州JavaFX如何创建ColorPicker?_北大青鸟IT学校

作者:邓华发布时间:2021-05-18分类:Java技术浏览:691


导读:Java是现在非常主流的编程语言之一,很多人想转行学习Java。那么,JavaFX如何创建ColorPicker?下面就让我们一起来看看惠州北大青鸟老师是怎么回答的。

Java是现在非常主流的编程语言之一,很多人想转行学习Java。那么,JavaFX如何创建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();
 }
}

想了解更多关于Java的知识,联系在线客服,或者来惠州北大青鸟新方舟校区了解一下。

java5.png

Java

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表