forked from varunon9/Remote-Control-PC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileOrFolder.fxml
More file actions
23 lines (21 loc) · 1.01 KB
/
Copy pathFileOrFolder.fxml
File metadata and controls
23 lines (21 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.image.*?>
<?import java.lang.*?>
<?import java.net.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<VBox fx:id="vBox" alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" onMouseClicked="#showDetails" prefHeight="80.0" prefWidth="84.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="layout.FileOrFolderController">
<children>
<ImageView id="iconImageView" fx:id="iconImageView" fitHeight="41.0" fitWidth="45.0" pickOnBounds="true" preserveRatio="true">
<VBox.margin>
<Insets />
</VBox.margin>
<image>
<Image url="@../resources/folder.png" />
</image></ImageView>
<Label fx:id="headingLabel" alignment="CENTER" prefHeight="36.0" prefWidth="84.0" text="folder" wrapText="true" />
</children>
</VBox>