menambahkan UI dialog tambah nota
parent
62ff7cbd47
commit
3eb8e2b74e
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<?import javafx.scene.control.Button?>
|
||||||
|
<?import javafx.scene.control.ComboBox?>
|
||||||
|
<?import javafx.scene.control.Label?>
|
||||||
|
<?import javafx.scene.control.RadioButton?>
|
||||||
|
<?import javafx.scene.control.TextField?>
|
||||||
|
<?import javafx.scene.layout.AnchorPane?>
|
||||||
|
<?import javafx.scene.text.Font?>
|
||||||
|
|
||||||
|
<AnchorPane id="AnchorPane" prefHeight="250.0" prefWidth="400.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
|
||||||
|
<children>
|
||||||
|
<Label layoutX="14.0" layoutY="14.0" text="Tambah" AnchorPane.leftAnchor="4.0" AnchorPane.topAnchor="4.0">
|
||||||
|
<font>
|
||||||
|
<Font size="16.0" />
|
||||||
|
</font>
|
||||||
|
</Label>
|
||||||
|
<RadioButton layoutX="33.0" layoutY="45.0" mnemonicParsing="false" onAction="#rbTambahNotaBaru" text="Baru" AnchorPane.leftAnchor="32.0" AnchorPane.topAnchor="46.0" />
|
||||||
|
<RadioButton layoutX="33.0" layoutY="121.0" mnemonicParsing="false" text="Ambil dari checkout" AnchorPane.leftAnchor="32.0" AnchorPane.topAnchor="122.0" />
|
||||||
|
<ComboBox layoutX="61.0" layoutY="79.0" prefWidth="150.0" promptText="Pilih salah satu" AnchorPane.leftAnchor="62.0" AnchorPane.topAnchor="70.0" />
|
||||||
|
<TextField layoutX="63.0" layoutY="150.0" AnchorPane.leftAnchor="62.0" AnchorPane.topAnchor="146.0" />
|
||||||
|
<Button layoutX="250.0" layoutY="200.0" mnemonicParsing="false" onAction="#btnBatal" text="Batal" AnchorPane.bottomAnchor="10.0" AnchorPane.rightAnchor="90.0" />
|
||||||
|
<Button layoutX="318.0" layoutY="200.0" mnemonicParsing="false" onAction="#btnLanjutkan" text="Lanjutkan" AnchorPane.bottomAnchor="10.0" AnchorPane.rightAnchor="10.0" />
|
||||||
|
</children>
|
||||||
|
</AnchorPane>
|
||||||
Loading…
Reference in New Issue