35 lines
1.9 KiB
Plaintext
35 lines
1.9 KiB
Plaintext
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
|
||
|
|
<?import javafx.scene.layout.AnchorPane?>
|
||
|
|
<?import javafx.scene.layout.GridPane?>
|
||
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
||
|
|
<?import javafx.scene.layout.RowConstraints?>
|
||
|
|
<?import javafx.scene.control.Label?>
|
||
|
|
<?import javafx.scene.control.TextField?>
|
||
|
|
<?import javafx.scene.control.PasswordField?>
|
||
|
|
<?import javafx.scene.control.Button?>
|
||
|
|
<AnchorPane prefHeight="649.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/19"
|
||
|
|
xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.zhangmeng.online.exam.ui.admin.LoginController">
|
||
|
|
<children>
|
||
|
|
<GridPane layoutX="485.0" layoutY="193.0" prefHeight="183.0" prefWidth="286.0" AnchorPane.bottomAnchor="281.0"
|
||
|
|
AnchorPane.leftAnchor="485.0" AnchorPane.rightAnchor="429.0" AnchorPane.topAnchor="185.0">
|
||
|
|
<columnConstraints>
|
||
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="229.0" minWidth="10.0" prefWidth="38.0"/>
|
||
|
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="423.0" minWidth="10.0" prefWidth="248.0"/>
|
||
|
|
</columnConstraints>
|
||
|
|
<rowConstraints>
|
||
|
|
<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"/>
|
||
|
|
</rowConstraints>
|
||
|
|
<children>
|
||
|
|
<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"/>
|
||
|
|
</children>
|
||
|
|
</GridPane>
|
||
|
|
</children>
|
||
|
|
</AnchorPane>
|