This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package javafxeyes; | |
| import javafx.scene.Parent; | |
| import javafx.scene.paint.Color; | |
| import javafx.scene.shape.Circle; | |
| import javafx.scene.shape.Ellipse; | |
| /** | |
| * 目玉コンポーネント | |
| * @author AOE Takashi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package mouseinfosample; | |
| import java.awt.MouseInfo; | |
| import java.awt.Point; | |
| import javafx.application.Application; | |
| import javafx.application.Platform; | |
| import javafx.event.ActionEvent; | |
| import javafx.event.EventHandler; | |
| import javafx.scene.Group; | |
| import javafx.scene.Scene; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ChoiceBox fx:id="choice"> | |
| <items> | |
| <FXCollections fx:factory="observableArrayList"> | |
| <String fx:value="itemA"/> | |
| <String fx:value="itemB"/> | |
| <String fx:value="itemC"/> | |
| </FXCollections> | |
| </items> | |
| </ChoiceBox> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package imageviewer; | |
| import java.io.File; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import javafx.application.Application; | |
| import javafx.event.EventHandler; | |
| import javafx.scene.Group; | |
| import javafx.scene.Scene; | |
| import javafx.scene.image.Image; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package filedndsample; | |
| import javafx.beans.property.SimpleStringProperty; | |
| import javafx.beans.property.StringProperty; | |
| public class DroppedFile { | |
| private StringProperty fileName = new SimpleStringProperty(); | |
| private StringProperty path = new SimpleStringProperty(); | |
| public StringProperty fileNameProperty() { | |
| return fileName; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package aoetk.multitouch.sample; | |
| import javafx.application.Application; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.Parent; | |
| import javafx.scene.Scene; | |
| import javafx.stage.Stage; | |
| /** | |
| * 第8回JavaFX勉強会に使用したマルチタッチサンプルアプリケーション。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package aoetk.bindingsample; | |
| import javafx.application.Application; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.Parent; | |
| import javafx.scene.Scene; | |
| import javafx.stage.Stage; | |
| /** | |
| * バインディングのサンプルアプリケーション。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <?import java.lang.*?> | |
| <?import java.util.*?> | |
| <?import javafx.geometry.*?> | |
| <?import javafx.scene.control.*?> | |
| <?import javafx.scene.image.*?> | |
| <?import javafx.scene.layout.*?> | |
| <?import javafx.scene.paint.*?> | |
| <?import javafx.scene.text.*?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package aoetk; | |
| import javafx.scene.control.Hyperlink; | |
| import javafx.scene.control.ListCell; | |
| import javafx.scene.layout.HBox; | |
| import javafx.scene.layout.Priority; | |
| import javafx.scene.layout.VBox; | |
| import javafx.scene.paint.Color; | |
| import javafx.scene.text.Font; | |
| import javafx.scene.text.Text; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package sample; | |
| import javafx.application.Application; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.Parent; | |
| import javafx.scene.Scene; | |
| import javafx.stage.Stage; | |
| public class DpiTestApp extends Application { |
OlderNewer