33 lines
2.2 KiB
Plaintext
33 lines
2.2 KiB
Plaintext
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
|
||
|
|
<?import javafx.scene.control.Button?>
|
||
|
|
<?import javafx.scene.control.Label?>
|
||
|
|
<?import javafx.scene.control.ProgressBar?>
|
||
|
|
<?import javafx.scene.control.TextField?>
|
||
|
|
<?import javafx.scene.image.ImageView?>
|
||
|
|
<?import javafx.scene.layout.AnchorPane?>
|
||
|
|
|
||
|
|
<AnchorPane prefHeight="649.0" prefWidth="1200.0" style="-fx-background-color: 1px;" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.zhangmeng.tools.controller.MinioUploadController">
|
||
|
|
<children>
|
||
|
|
<Label layoutX="265.0" layoutY="72.0" text="endpoint:" />
|
||
|
|
<TextField fx:id="endpoint" layoutX="344.0" layoutY="68.0" prefHeight="25.0" prefWidth="612.0" />
|
||
|
|
<TextField fx:id="accessKey" layoutX="344.0" layoutY="125.0" prefHeight="25.0" prefWidth="612.0" />
|
||
|
|
<TextField fx:id="secretKey" layoutX="344.0" layoutY="181.0" prefHeight="25.0" prefWidth="612.0" />
|
||
|
|
<Label layoutX="263.0" layoutY="129.0" text="accessKey:" />
|
||
|
|
<Label layoutX="264.0" layoutY="185.0" text="secretKey:" />
|
||
|
|
<Label layoutX="278.0" layoutY="242.0" text="bucket:" />
|
||
|
|
<TextField fx:id="bucket" layoutX="344.0" layoutY="238.0" prefHeight="25.0" prefWidth="612.0" />
|
||
|
|
<Label layoutX="284.0" layoutY="308.0" text="文件:" />
|
||
|
|
<AnchorPane layoutX="344.0" layoutY="317.0" prefHeight="153.0" prefWidth="227.0" style="-fx-border-color: gray;-fx-border-width: 1px">
|
||
|
|
<children>
|
||
|
|
<ImageView fx:id="iv" fitHeight="153.0" fitWidth="227.0" pickOnBounds="true" preserveRatio="true" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
|
||
|
|
</children>
|
||
|
|
</AnchorPane>
|
||
|
|
<Button fx:id="file_choose" layoutX="623.0" layoutY="382.0" mnemonicParsing="false" text="文件选择" />
|
||
|
|
<Button fx:id="upload" layoutX="752.0" layoutY="382.0" mnemonicParsing="false" text="上传" />
|
||
|
|
<ProgressBar layoutX="263.0" layoutY="539.0" prefHeight="7.0" prefWidth="746.0" progress="0.0" />
|
||
|
|
<Label layoutX="209.0" layoutY="534.0" text="进度:" />
|
||
|
|
<TextField fx:id="file_path" layoutX="623.0" layoutY="317.0" prefHeight="25.0" prefWidth="331.0" />
|
||
|
|
</children>
|
||
|
|
</AnchorPane>
|