contactSearchTab

This commit is contained in:
2020-08-22 21:50:05 +02:00
parent 1fe83dbcc0
commit b4397fe2f2
5 changed files with 30 additions and 20 deletions

View File

@ -134,3 +134,11 @@
.listElement {
-fx-background-color: transparent;
}
.tab-pane {
-fx-tab-max-height: 0 ;
}
.tab-pane .tab-header-area {
visibility: hidden ;
-fx-padding: -20 0 0 0;
}

View File

@ -104,9 +104,8 @@
</AnchorPane>
</content>
</Tab>
<Tab text="Untitled Tab 2">
<Tab fx:id="contactSearchTab" text="">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
</content>
</Tab>
</tabs>

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml">
<Button text="This is a test!" />
</AnchorPane>

View File

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.text.*?>
<?import javafx.scene.layout.*?>
<StackPane prefHeight="200" prefWidth="200" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Text text="test" />
</children>
</StackPane>