/
rgd045
/
crypt-file
Обзор
Документация
Войти
/
rgd045
/
crypt-file
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/resources/fxml/migration_capability_error.fxml
47 строк
2 KB
Sebastian Stenzel
Single maven module (#1676)
04 июн 2021, 21:09
Не верифицирован
04 июн 2021, 21:09
7fac6da
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <?import org.cryptomator.ui.controls.FontAwesome5IconView?> <?import javafx.geometry.Insets?> <?import javafx.scene.control.Button?> <?import javafx.scene.control.ButtonBar?> <?import javafx.scene.control.Label?> <?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.Region?> <?import javafx.scene.layout.StackPane?> <?import javafx.scene.layout.VBox?> <?import javafx.scene.shape.Circle?> <VBox xmlns:fx="http://javafx.com/fxml" xmlns="http://javafx.com/javafx" fx:controller="org.cryptomator.ui.migration.MigrationCapabilityErrorController" minWidth="400" maxWidth="400" minHeight="145" spacing="12"> <padding> <Insets topRightBottomLeft="12"/> </padding> <children> <HBox spacing="12" VBox.vgrow="ALWAYS"> <StackPane alignment="CENTER" HBox.hgrow="NEVER"> <Circle styleClass="glyph-icon-primary" radius="24"/> <FontAwesome5IconView styleClass="glyph-icon-white" glyph="EXCLAMATION" glyphSize="24"/> </StackPane> <VBox spacing="6" HBox.hgrow="ALWAYS"> <Label text="%migration.error.missingFileSystemCapabilities.title" wrapText="true"/> <Label text="%migration.error.missingFileSystemCapabilities.description" wrapText="true"/> <Label text="${controller.missingCapabilityDescription}" wrapText="true"/> </VBox> </HBox> <Region VBox.vgrow="ALWAYS"/> <VBox alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS"> <ButtonBar buttonMinWidth="120" buttonOrder="B+U"> <buttons> <Button text="%generic.button.back" ButtonBar.buttonData="BACK_PREVIOUS" cancelButton="true" onAction="#back"/> <Region ButtonBar.buttonData="OTHER"/> </buttons> </ButtonBar> </VBox> </children> </VBox>