mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
14 lines
547 B
XML
14 lines
547 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.RadioButton?>
|
|
<?import javafx.scene.control.ToggleGroup?>
|
|
<?import javafx.scene.layout.StackPane?>
|
|
<StackPane xmlns:fx="http://javafx.com/fxml">
|
|
<RadioButton fx:id="option1" disable="true" mnemonicParsing="false" text="Option 1">
|
|
<toggleGroup>
|
|
<ToggleGroup fx:id="toggleGroup1"/>
|
|
</toggleGroup>
|
|
</RadioButton>
|
|
<RadioButton fx:id="option2" disable="true" mnemonicParsing="false" text="Option 2" toggleGroup="$toggleGroup1"/>
|
|
</StackPane>
|