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.
|
|
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.effect.*?> <?import javafx.scene.control.*?> <?import java.lang.*?> <?import javafx.scene.layout.*?>
<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"> <bottom> <HBox fx:id="bottom" BorderPane.alignment="CENTER"> <children> <Button fx:id="builder" mnemonicParsing="false" text="%button.build" /> </children> </HBox> </bottom> <center> <TableView fx:id="table" editable="true" BorderPane.alignment="CENTER"> <columns> <TableColumn fx:id="name" editable="false" prefWidth="75.0" text="%column.name" /> <TableColumn fx:id="address" editable="false" prefWidth="75.0" text="%column.address" /> <TableColumn fx:id="os" editable="false" prefWidth="75.0" text="%column.os" /> <TableColumn fx:id="version" editable="false" prefWidth="75.0" text="%column.version" /> <TableColumn fx:id="desktop" editable="false" prefWidth="75.0" text="%column.desktop" /> <TableColumn fx:id="voice" editable="false" prefWidth="75.0" text="%column.voice" /> </columns> <placeholder> <Label text="%table.empty" /> </placeholder> <columnResizePolicy> <TableView fx:constant="CONSTRAINED_RESIZE_POLICY" /> </columnResizePolicy> </TableView> </center> </BorderPane>
|