JavaFX ColorPicker 🖌️

preview_player
Показать описание
javafx colorpicker node tutorial example explained

#javafx #colorpicker #color

//*****************************************************************************
// JavaFX ColorPicker
//*****************************************************************************

package application;

public class Controller {

@FXML
private Pane myPane;
@FXML
private ColorPicker myColorPicker;

public void changeColor(ActionEvent event) {
}
}
Рекомендации по теме
Комментарии
Автор


package application;

import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.geometry.Insets;
import
import
import
import
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;

public class Controller {

@FXML
private Pane myPane;
@FXML
private ColorPicker myColorPicker;

public void changeColor(ActionEvent event) {

Color myColor = myColorPicker.getValue();
myPane.setBackground(new Background(new BackgroundFill(myColor, CornerRadii.EMPTY, Insets.EMPTY)));

}

Scene.fxml
<?xml version="1.0" encoding="UTF-8"?>

<?import
<?import
<?import javafx.scene.paint.Color?>


<children>
<ColorPicker fx:id="myColorPicker" layoutX="238.0" layoutY="188.0" onAction="#changeColor">
<value>
<Color />
</value>
</ColorPicker>
</children>
</AnchorPane>

BroCodez
Автор

As a CS student your videos have been an absolute savior for learning Java.

benjaminphillips
Автор

This is the best programming channel I know!!

thanhtung
Автор

Are you going to teach us how we can export our javafx project so that we can run it without any start.bat file?

cpu
Автор

Can you share information how to formula the code .
I know all the keyword and there uses but dont know how to weave the code

abdalkaderalnazer