You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
819 B
28 lines
819 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import java.lang.*?>
|
|
<?import java.util.*?>
|
|
<?import javafx.scene.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<BorderPane xmlns="http://javafx.com/javafx"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="view.PrincipalView">
|
|
<fx:define>
|
|
<Integer fx:id="moin1" fx:value="-1" />
|
|
</fx:define>
|
|
<center>
|
|
<SplitPane dividerPositions="0.3" >
|
|
<items>
|
|
<ListView fx:id="listViewPapillon" />
|
|
<VBox disable="${listViewPapillon.selectionModel.selectedIndex == moin1}" spacing="5.0" >
|
|
<children>
|
|
|
|
</children>
|
|
</VBox>
|
|
</items>
|
|
</SplitPane>
|
|
</center>
|
|
</BorderPane>
|