Advertisement
Egor_Vakar

game.fxml

Nov 17th, 2021
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 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.TextField?>
  6. <?import javafx.scene.image.Image?>
  7. <?import javafx.scene.image.ImageView?>
  8. <?import javafx.scene.layout.AnchorPane?>
  9. <?import javafx.scene.text.Font?>
  10.  
  11. <AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="600.0" style="-fx-background-color: #c9cfff;" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.mendeleevtable.Controller">
  12. <children>
  13. <AnchorPane prefHeight="66.0" prefWidth="600.0" style="-fx-background-color: #ffffff;">
  14. <children>
  15. <Label layoutX="259.0" layoutY="15.0" text="ИГРА" textAlignment="CENTER">
  16. <font>
  17. <Font name="Times New Roman" size="32.0" />
  18. </font>
  19. </Label>
  20. <Button fx:id="backToMain" layoutX="471.0" layoutY="18.0" mnemonicParsing="false" onAction="#backToMain1" prefHeight="28.0" prefWidth="114.0" style="-fx-background-color: #2d009e; -fx-text-fill: #FFFFFF;" text="назад">
  21. <font>
  22. <Font name="Times New Roman" size="16.0" />
  23. </font>
  24. </Button>
  25. </children>
  26. </AnchorPane>
  27. <Label fx:id="nameID" layoutX="14.0" layoutY="66.0" text="Очки:" visible="false">
  28. <font>
  29. <Font name="Times New Roman" size="24.0" />
  30. </font>
  31. </Label>
  32. <Label fx:id="health" layoutX="300.0" layoutY="66.0" text="Здоровье:">
  33. <font>
  34. <Font name="Times New Roman" size="24.0" />
  35. </font>
  36. </Label>
  37. <Label fx:id="logoG" alignment="CENTER" contentDisplay="CENTER" layoutX="172.0" layoutY="187.0" prefHeight="224.0" prefWidth="255.0" wrapText="true">
  38. <font>
  39. <Font size="150.0" />
  40. </font>
  41. </Label>
  42. <TextField fx:id="usersAnswer" layoutX="173.0" layoutY="485.0" onAction="#checkAnswer" prefHeight="36.0" prefWidth="255.0" promptText="Введите название элемента" visible="false">
  43. <font>
  44. <Font name="Times New Roman" size="18.0" />
  45. </font>
  46. </TextField>
  47. <Button fx:id="checkAnswerButton" layoutX="172.0" layoutY="540.0" mnemonicParsing="false" onAction="#checkAnswer" prefHeight="30.0" prefWidth="255.0" style="-fx-background-color: #2d009e; -fx-text-fill: #FFFFFF;" text="начать игру">
  48. <font>
  49. <Font name="Times New Roman" size="16.0" />
  50. </font>
  51. </Button>
  52. <Label fx:id="points" layoutX="90.0" layoutY="66.0" text="0" visible="false">
  53. <font>
  54. <Font name="Times New Roman" size="24.0" />
  55. </font>
  56. </Label>
  57. <Label id="colorRight" fx:id="colorRight" alignment="CENTER" layoutX="22.0" layoutY="282.0" prefHeight="94.0" prefWidth="179.0" style="-fx-background-color: lime;" text="ОК" visible="false">
  58. <font>
  59. <Font size="64.0" />
  60. </font>
  61. </Label>
  62. <Label id="colorRight" fx:id="colorWrong" alignment="CENTER" layoutX="22.0" layoutY="299.0" prefHeight="60.0" prefWidth="179.0" style="-fx-background-color: red;" text="NO" visible="false">
  63. <font>
  64. <Font size="36.0" />
  65. </font>
  66. </Label>
  67. <ImageView fx:id="secondHeart" fitHeight="36.0" fitWidth="38.0" layoutX="455.0" layoutY="66.0" pickOnBounds="true" preserveRatio="true" visible="false">
  68. <image>
  69. <Image url="@../../../../../src/main/resources/heart.png" />
  70. </image>
  71. </ImageView>
  72. <ImageView fx:id="firstHeart" fitHeight="36.0" fitWidth="38.0" layoutX="500.0" layoutY="66.0" pickOnBounds="true" preserveRatio="true" visible="false">
  73. <image>
  74. <Image url="@../../../../../src/main/resources/heart.png" />
  75. </image>
  76. </ImageView>
  77. <ImageView fx:id="thirdHeart" fitHeight="36.0" fitWidth="38.0" layoutX="410.0" layoutY="66.0" pickOnBounds="true" preserveRatio="true" visible="false">
  78. <image>
  79. <Image url="@../../../../../src/main/resources/heart.png" />
  80. </image>
  81. </ImageView>
  82. </children>
  83. </AnchorPane>
  84.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement