-
Notifications
You must be signed in to change notification settings - Fork 0
/
Recruit SR.fxml
51 lines (49 loc) · 2.38 KB
/
Recruit SR.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane id="AnchorPane" prefHeight="479.0" prefWidth="738.0" style="-fx-background-color: skyblue;" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="pranFood.PreparePeriodicReportsController">
<children>
<Label layoutX="308.0" layoutY="14.0" prefHeight="62.0" prefWidth="135.0" text="Recruit SR">
<font>
<Font name="System Bold Italic" size="24.0" />
</font>
</Label>
<Label layoutX="164.0" layoutY="114.0" text="No of Vacancy:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<Label layoutX="45.0" layoutY="164.0" prefHeight="27.0" prefWidth="254.0" text="Qualification for Recruitment:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<TextField fx:id="vacancyTextField" layoutX="327.0" layoutY="112.0" prefHeight="31.0" prefWidth="218.0" />
<Button fx:id="submitButton" layoutX="582.0" layoutY="397.0" mnemonicParsing="false" onAction="#submitButtonOnClick" prefHeight="53.0" prefWidth="131.0" style="-fx-background-color: black;" text="Submit" textFill="#fcfcfc">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Button>
<Label layoutX="137.0" layoutY="344.0" prefHeight="27.0" prefWidth="162.0" text="Call For Interview:">
<font>
<Font name="System Bold" size="18.0" />
</font>
</Label>
<RadioButton fx:id="yesRadioButton" layoutX="315.0" layoutY="344.0" mnemonicParsing="false" onAction="#selectYes" text="Yes">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<RadioButton fx:id="noRadioButton" layoutX="414.0" layoutY="344.0" mnemonicParsing="false" onAction="#selectNo" text="No">
<font>
<Font name="System Bold" size="18.0" />
</font>
</RadioButton>
<TextArea fx:id="qualificationTextArea" layoutX="332.0" layoutY="157.0" prefHeight="166.0" prefWidth="208.0" />
</children>
</AnchorPane>