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.

30 lines
1.2 KiB

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