Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.control.RadioButton?>
  6. <?import javafx.scene.control.TextArea?>
  7. <?import javafx.scene.control.ToggleGroup?>
  8. <?import javafx.scene.layout.AnchorPane?>
  9. <?import javafx.scene.text.Font?>
  10.  
  11. <AnchorPane id="AnchorPane" prefHeight="574.0" prefWidth="734.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="darkww.FXMLDocumentController">
  12. <children>
  13. <Button fx:id="button" layoutX="244.0" layoutY="289.0" onAction="#handleButtonAction" text="Start" />
  14. <TextArea fx:id="ta1" layoutX="14.0" layoutY="73.0" prefHeight="206.0" prefWidth="709.0" />
  15. <TextArea fx:id="ta2" editable="false" layoutX="14.0" layoutY="360.0" prefHeight="206.0" prefWidth="709.0" />
  16. <RadioButton fx:id="radiotz" layoutX="16.0" layoutY="293.0" mnemonicParsing="false" selected="true" text="tryb zminimalizowany">
  17. <toggleGroup>
  18. <ToggleGroup fx:id="group" />
  19. </toggleGroup>
  20. </RadioButton>
  21. <RadioButton fx:id="radiotp" layoutX="16.0" layoutY="323.0" mnemonicParsing="false" text="tryb pełny" toggleGroup="$group" />
  22. <Button layoutX="485.0" layoutY="289.0" mnemonicParsing="false" onAction="#otworzLinki" text="Otwórz linki" />
  23. <Button layoutX="582.0" layoutY="289.0" mnemonicParsing="false" onAction="#otworzWygenerowane" text="Otwórz wygenerowane" />
  24. <Label fx:id="labelKoniec" layoutX="215.0" layoutY="320.0" prefHeight="27.0" prefWidth="211.0" text="KONIEC" textFill="RED" visible="false">
  25. <font>
  26. <Font name="System Bold Italic" size="18.0" />
  27. </font>
  28. </Label>
  29. <Button fx:id="buttonPrzerwij" disable="true" layoutX="443.0" layoutY="328.0" mnemonicParsing="false" onAction="#breakSelenium" text="Przerwij selenium" />
  30. <Label layoutX="252.0" layoutY="5.0" text="Premium Link Generator" textFill="#0034ee">
  31. <font>
  32. <Font name="System Bold Italic" size="20.0" />
  33. </font>
  34. </Label>
  35. <Label layoutX="26.0" layoutY="35.0" text="rapidu.net, fileshark.pl">
  36. <font>
  37. <Font name="System Bold Italic" size="12.0" />
  38. </font>
  39. </Label>
  40. <Label fx:id="labelTimer" layoutX="526.0" prefHeight="25.0" prefWidth="194.0" textFill="RED">
  41. <font>
  42. <Font name="System Bold" size="14.0" />
  43. </font>
  44. </Label>
  45. <Label fx:id="labelTimer1" layoutX="526.0" layoutY="19.0" prefHeight="25.0" prefWidth="194.0" textFill="RED">
  46. <font>
  47. <Font name="System Bold" size="14.0" />
  48. </font>
  49. </Label>
  50. <Label fx:id="labelTimer2" layoutX="525.0" layoutY="40.0" prefHeight="25.0" prefWidth="194.0" textFill="RED">
  51. <font>
  52. <Font name="System Bold" size="14.0" />
  53. </font>
  54. </Label>
  55. <Button fx:id="button1" layoutX="375.0" layoutY="289.0" onAction="#sprawdzLinki" prefHeight="25.0" prefWidth="93.0" text="Sprawdź linki" />
  56. <Button layoutX="574.0" layoutY="328.0" mnemonicParsing="false" onAction="#otworzDobre" text="dobre" />
  57. <Button layoutX="634.0" layoutY="328.0" mnemonicParsing="false" onAction="#otworzWypucowane" text="wypucowane" />
  58. </children>
  59. </AnchorPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement