Advertisement
lyogadi

FXML File

Oct 5th, 2019
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.23 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.geometry.Insets?>
  4. <?import javafx.scene.control.Button?>
  5. <?import javafx.scene.control.ComboBox?>
  6. <?import javafx.scene.control.Label?>
  7. <?import javafx.scene.control.ListView?>
  8. <?import javafx.scene.control.TextField?>
  9. <?import javafx.scene.layout.ColumnConstraints?>
  10. <?import javafx.scene.layout.GridPane?>
  11. <?import javafx.scene.layout.HBox?>
  12. <?import javafx.scene.layout.Region?>
  13. <?import javafx.scene.layout.RowConstraints?>
  14. <?import javafx.scene.layout.VBox?>
  15. <?import javafx.scene.text.Font?>
  16.  
  17. <VBox alignment="CENTER" prefHeight="367.0" prefWidth="447.0" spacing="5.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
  18. <children>
  19. <HBox alignment="TOP_RIGHT">
  20. <children>
  21. <Label focusTraversable="false" text="Lịch cắt điện">
  22. <font>
  23. <Font size="14.0" />
  24. </font>
  25. </Label>
  26. <Region prefHeight="25.0" prefWidth="156.0" />
  27. <Button contentDisplay="CENTER" mnemonicParsing="false" onAction="#closeButton" prefHeight="25.0" prefWidth="33.0" text="X" textFill="RED" />
  28. </children>
  29. </HBox>
  30. <Label alignment="CENTER" contentDisplay="CENTER" text="Bỏ trống Mã khách hàng nếu tìm theo địa chỉ cụ thể" />
  31. <GridPane hgap="5.0" minHeight="0.0" minWidth="0.0" prefHeight="126.0" prefWidth="410.0" vgap="2.0">
  32. <columnConstraints>
  33. <ColumnConstraints hgrow="SOMETIMES" maxWidth="193.0" minWidth="10.0" prefWidth="40.0" />
  34. <ColumnConstraints hgrow="SOMETIMES" maxWidth="193.0" minWidth="10.0" prefWidth="97.0" />
  35. <ColumnConstraints hgrow="SOMETIMES" maxWidth="356.0" minWidth="10.0" prefWidth="265.0" />
  36. <ColumnConstraints hgrow="SOMETIMES" maxWidth="338.0" minWidth="10.0" prefWidth="40.0" />
  37. </columnConstraints>
  38. <rowConstraints>
  39. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  40. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  41. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  42. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  43. </rowConstraints>
  44. <children>
  45. <Label text="Mã khách hàng" GridPane.columnIndex="1" GridPane.columnSpan="2" />
  46. <Label text="Công ty Điện lực" GridPane.columnIndex="1" GridPane.rowIndex="1" />
  47. <Label text="Điện lực" GridPane.columnIndex="1" GridPane.rowIndex="2" />
  48. <TextField fx:id="TF_maKH" prefHeight="27.0" prefWidth="277.0" GridPane.columnIndex="2" />
  49. <ComboBox fx:id="Combo_congtydienluc" onAction="#getDienluc" prefHeight="25.0" prefWidth="323.0" style="-fx-font-family: Arial;" GridPane.columnIndex="2" GridPane.rowIndex="1" />
  50. <ComboBox fx:id="Combo_dienluc" prefHeight="25.0" prefWidth="319.0" style="-fx-font-family: Arial;" GridPane.columnIndex="2" GridPane.rowIndex="2" />
  51. <Label text="Địa chỉ cụ thể" GridPane.columnIndex="1" GridPane.rowIndex="3" />
  52. <TextField fx:id="TF_diachicuthe" prefHeight="25.0" prefWidth="189.0" GridPane.columnIndex="2" GridPane.rowIndex="3" />
  53. </children>
  54. </GridPane>
  55. <HBox alignment="CENTER" spacing="10.0">
  56. <children>
  57. <Button mnemonicParsing="false" onAction="#searchButton" text="Tìm kiếm" />
  58. <Button mnemonicParsing="false" onAction="#addButton" text="Thêm" />
  59. </children>
  60. </HBox>
  61. <ListView fx:id="LV_saveList" prefHeight="114.0" prefWidth="399.0" />
  62. <HBox alignment="CENTER" spacing="10.0">
  63. <children>
  64. <Button mnemonicParsing="false" onAction="#showSaveListButton" text="Xem thông tin đã chọn" />
  65. <Button mnemonicParsing="false" onAction="#deleteSaveListButton" text="Xóa địa chỉ" />
  66. <Region prefHeight="25.0" prefWidth="44.0" />
  67. <Button mnemonicParsing="false" text="Cài đặt" />
  68. </children>
  69. </HBox>
  70. </children>
  71. <padding>
  72. <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
  73. </padding>
  74. </VBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement