/
comavp
/
client-server-information-system
Обзор
Документация
Войти
/
comavp
/
client-server-information-system
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Client/src/view/fxview/fxmlComponents/EditTrackForm.fxml
83 строки
3 KB
Anton
first commit
31 янв 2019, 18:02
31 янв 2019, 18:02
67619a3
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <?import javafx.geometry.*?> <?import java.lang.*?> <?import java.util.*?> <?import javafx.scene.*?> <?import javafx.scene.control.*?> <?import javafx.scene.layout.*?> <BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="155.0" prefWidth="500.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="view.fxview.controllers.EditTrackController"> <center> <VBox prefHeight="135.0" prefWidth="293.0" BorderPane.alignment="CENTER"> <children> <TextField fx:id="trackNameField" /> <TextField fx:id="artistField"> <VBox.margin> <Insets top="5.0" /> </VBox.margin> </TextField> <TextField fx:id="albumField"> <VBox.margin> <Insets top="5.0" /> </VBox.margin> </TextField> <TextField fx:id="lengthField"> <VBox.margin> <Insets top="5.0" /> </VBox.margin> </TextField> </children> <BorderPane.margin> <Insets top="20.0" /> </BorderPane.margin> </VBox> </center> <left> <VBox prefHeight="115.0" prefWidth="105.0" BorderPane.alignment="CENTER"> <children> <Label prefHeight="17.0" prefWidth="129.0" text="Название: "> <VBox.margin> <Insets left="20.0" top="5.0" /> </VBox.margin> </Label> <Label text="Исполнитель: "> <VBox.margin> <Insets left="20.0" top="10.0" /> </VBox.margin> </Label> <Label text="Альбом: "> <VBox.margin> <Insets left="20.0" top="15.0" /> </VBox.margin> </Label> <Label text="Длительность: "> <VBox.margin> <Insets left="20.0" top="12.0" /> </VBox.margin> </Label> </children> <BorderPane.margin> <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" /> </BorderPane.margin> </VBox> </left> <right> <VBox prefHeight="60.0" prefWidth="74.0" BorderPane.alignment="CENTER"> <children> <Button fx:id="okButton" defaultButton="true" mnemonicParsing="false" onAction="#actionSave" prefHeight="25.0" prefWidth="63.0" text="ОК"> <VBox.margin> <Insets left="10.0" /> </VBox.margin></Button> <Button fx:id="closeButton" cancelButton="true" mnemonicParsing="false" onAction="#actionClose" prefHeight="25.0" prefWidth="63.0" text="Отмена"> <VBox.margin> <Insets left="10.0" top="10.0" /> </VBox.margin> </Button> </children> <BorderPane.margin> <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" /> </BorderPane.margin> </VBox> </right> </BorderPane>