/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/java/java-503-3111-005/main.java
22 строки
831 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
Label statusLabel = new Label("Готово — выберите вкладку и поиграйте с элементами"); statusLabel.getStyleClass().add("status-bar"); statusLabel.setMaxWidth(Double.MAX_VALUE); TabPane tabs = new TabPane( formTab(statusLabel), listTab(statusLabel), progressTab(statusLabel) ); tabs.setTabClosingPolicy(TabPane.TabClosingPolicy.UNAVAILABLE); VBox header = new VBox(4, styledLabel("JavaFX Demo", "header-title"), styledLabel("Наглядные контролы, привязки и простая анимация", "header-subtitle") ); header.setPadding(new Insets(20, 20, 8, 20)); BorderPane root = new BorderPane(); root.setTop(header); root.setCenter(tabs); root.setBottom(statusLabel); BorderPane.setMargin(tabs, new Insets(0, 16, 12, 16));