mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
javafx: completion of enums inside static properties
This commit is contained in:
@@ -4,6 +4,6 @@
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.text.*?>
|
||||
<GridPane fx:controller="pp.ExampleController" xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
|
||||
<HBox spacing="10" alignment="BOTTOM_RIGHT" <caret> GridPane.rowIndex="4"/>
|
||||
<GridPane xmlns:fx="http://javafx.com/fxml">
|
||||
<HBox <caret> GridPane.rowIndex="4"/>
|
||||
</GridPane>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.geometry.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.text.*?>
|
||||
<GridPane xmlns:fx="http://javafx.com/fxml">
|
||||
<HBox GridPane.hgrow="<caret>"/>
|
||||
</GridPane>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.geometry.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.text.*?>
|
||||
<GridPane xmlns:fx="http://javafx.com/fxml">
|
||||
<HBox GridPane.hgrow="ALWAYS"/>
|
||||
</GridPane>
|
||||
@@ -4,6 +4,6 @@
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.text.*?>
|
||||
<GridPane fx:controller="pp.ExampleController" xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
|
||||
<HBox spacing="10" alignment="BOTTOM_RIGHT" GridPane.columnIndex="" GridPane.rowIndex="4"/>
|
||||
<GridPane xmlns:fx="http://javafx.com/fxml">
|
||||
<HBox GridPane.columnIndex="" GridPane.rowIndex="4"/>
|
||||
</GridPane>
|
||||
Reference in New Issue
Block a user