2025-03-05 03:24:46 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
2025-03-18 07:01:25 +00:00
|
|
|
<?import javafx.scene.control.Button?>
|
|
|
|
|
<?import javafx.scene.control.Label?>
|
|
|
|
|
<?import javafx.scene.control.PasswordField?>
|
|
|
|
|
<?import javafx.scene.control.TextField?>
|
2025-03-05 03:24:46 +00:00
|
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
|
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
2025-03-18 07:01:25 +00:00
|
|
|
<?import javafx.scene.layout.GridPane?>
|
2025-03-05 03:24:46 +00:00
|
|
|
<?import javafx.scene.layout.RowConstraints?>
|
2025-03-18 07:01:25 +00:00
|
|
|
|
|
|
|
|
<AnchorPane prefHeight="315.0" prefWidth="527.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.zhangmeng.online.exam.ui.admin.LoginController">
|
2025-03-05 03:24:46 +00:00
|
|
|
<children>
|
2025-03-18 07:01:25 +00:00
|
|
|
<GridPane layoutX="485.0" layoutY="59.0" prefHeight="159.0" prefWidth="275.0" AnchorPane.bottomAnchor="97.0" AnchorPane.leftAnchor="125.0" AnchorPane.rightAnchor="127.0" AnchorPane.topAnchor="59.0">
|
2025-03-05 03:24:46 +00:00
|
|
|
<columnConstraints>
|
2025-03-18 07:01:25 +00:00
|
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="229.0" minWidth="10.0" prefWidth="38.0" />
|
|
|
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="423.0" minWidth="10.0" prefWidth="248.0" />
|
2025-03-05 03:24:46 +00:00
|
|
|
</columnConstraints>
|
|
|
|
|
<rowConstraints>
|
2025-03-18 07:01:25 +00:00
|
|
|
<RowConstraints maxHeight="174.0" minHeight="10.0" prefHeight="60.0" vgrow="SOMETIMES" />
|
|
|
|
|
<RowConstraints maxHeight="206.0" minHeight="10.0" prefHeight="47.0" vgrow="SOMETIMES" />
|
|
|
|
|
<RowConstraints maxHeight="238.0" minHeight="10.0" prefHeight="52.0" vgrow="SOMETIMES" />
|
2025-03-05 03:24:46 +00:00
|
|
|
</rowConstraints>
|
|
|
|
|
<children>
|
2025-03-18 07:01:25 +00:00
|
|
|
<Label text="账号" />
|
|
|
|
|
<Label text="密码" GridPane.rowIndex="1" />
|
|
|
|
|
<TextField GridPane.columnIndex="1" />
|
|
|
|
|
<Button mnemonicParsing="false" prefHeight="23.0" prefWidth="178.0" text="登录" GridPane.columnIndex="1" GridPane.rowIndex="2" />
|
|
|
|
|
<PasswordField GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
2025-03-05 03:24:46 +00:00
|
|
|
</children>
|
|
|
|
|
</GridPane>
|
|
|
|
|
</children>
|
2025-03-18 07:01:25 +00:00
|
|
|
</AnchorPane>
|