java remote access trojanc
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.

34 lines
1.5 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.scene.effect.*?>
  3. <?import javafx.scene.control.*?>
  4. <?import java.lang.*?>
  5. <?import javafx.scene.layout.*?>
  6. <BorderPane fx:id="pane" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.sogomn.rat.server.gui.RattyGuiFx" prefWidth="950" prefHeight="500">
  7. <bottom>
  8. <HBox fx:id="bottom" BorderPane.alignment="CENTER">
  9. <children>
  10. <Button fx:id="builder" mnemonicParsing="false" text="%button.build" />
  11. </children>
  12. </HBox>
  13. </bottom>
  14. <center>
  15. <TableView fx:id="table" editable="true" BorderPane.alignment="CENTER">
  16. <columns>
  17. <TableColumn fx:id="name" editable="false" prefWidth="75.0" text="%column.name" />
  18. <TableColumn fx:id="address" editable="false" prefWidth="75.0" text="%column.address" />
  19. <TableColumn fx:id="os" editable="false" prefWidth="75.0" text="%column.os" />
  20. <TableColumn fx:id="version" editable="false" prefWidth="75.0" text="%column.version" />
  21. <TableColumn fx:id="desktop" editable="false" prefWidth="75.0" text="%column.desktop" />
  22. <TableColumn fx:id="voice" editable="false" prefWidth="75.0" text="%column.voice" />
  23. </columns>
  24. <placeholder>
  25. <Label text="%table.empty" />
  26. </placeholder>
  27. <columnResizePolicy>
  28. <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
  29. </columnResizePolicy>
  30. </TableView>
  31. </center>
  32. </BorderPane>