zeto
zeto
JCHJava Community | Help. Code. Learn.
Created by zeto on 7/29/2024 in #java-help
JavaFX Simple Chat App Suggestions
ServerController.java
8 replies
JCHJava Community | Help. Code. Learn.
Created by zeto on 7/29/2024 in #java-help
JavaFX Simple Chat App Suggestions
Server.java
8 replies
JCHJava Community | Help. Code. Learn.
Created by zeto on 7/29/2024 in #java-help
JavaFX Simple Chat App Suggestions
ClientController.java
8 replies
JCHJava Community | Help. Code. Learn.
Created by zeto on 7/29/2024 in #java-help
JavaFX Simple Chat App Suggestions
Client.java
8 replies
JCHJava Community | Help. Code. Learn.
Created by zeto on 7/16/2024 in #java-help
Pane size is different
FXML Code:
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>

<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" stylesheets="@style1.css" xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.javafx.Controller1">
<children>
<Label fx:id="levelLabel" layoutX="4.0" layoutY="58.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="25.0" prefWidth="600.0" text="Level 1" textAlignment="CENTER" />
<Label fx:id="nameLabel" layoutY="188.0" prefHeight="17.0" prefWidth="600.0" text="Enter Name to Continue:" textAlignment="CENTER" />
<Button layoutX="239.0" layoutY="336.0" mnemonicParsing="false" onAction="#switchToScene2" prefHeight="39.0" prefWidth="122.0" text="Switch">
<font>
<Font size="20.0" />
</font>
</Button>
<TextField fx:id="nameTextField" layoutX="220.0" layoutY="231.0" prefHeight="25.0" prefWidth="168.0" />
</children>
</AnchorPane>
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>

<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" stylesheets="@style1.css" xmlns="http://javafx.com/javafx/22" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.javafx.Controller1">
<children>
<Label fx:id="levelLabel" layoutX="4.0" layoutY="58.0" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="25.0" prefWidth="600.0" text="Level 1" textAlignment="CENTER" />
<Label fx:id="nameLabel" layoutY="188.0" prefHeight="17.0" prefWidth="600.0" text="Enter Name to Continue:" textAlignment="CENTER" />
<Button layoutX="239.0" layoutY="336.0" mnemonicParsing="false" onAction="#switchToScene2" prefHeight="39.0" prefWidth="122.0" text="Switch">
<font>
<Font size="20.0" />
</font>
</Button>
<TextField fx:id="nameTextField" layoutX="220.0" layoutY="231.0" prefHeight="25.0" prefWidth="168.0" />
</children>
</AnchorPane>
7 replies