-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGUIForm.java
145 lines (130 loc) · 5.86 KB
/
GUIForm.java
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class GUIForm extends JFrame {
private JTextField firstNameField;
private JTextField lastNameField;
private JTextField addressField;
private JTextField mobileField;
private JRadioButton maleRadioButton;
private JRadioButton femaleRadioButton;
private JCheckBox computerCheckBox;
private JCheckBox sportsCheckBox;
private JCheckBox musicCheckBox;
public GUIForm() {
setTitle("Registration Form");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setResizable(false);
setSize(400, 300);
setLocationRelativeTo(null);
// Create the main panel and set the layout
JPanel mainPanel = new JPanel();
mainPanel.setLayout(new GridLayout(9, 2, 5, 5));
// Add First Name field
mainPanel.add(new JLabel("First Name:"));
firstNameField = new JTextField(20);
mainPanel.add(firstNameField);
// Add Last Name field
mainPanel.add(new JLabel("Last Name:"));
lastNameField = new JTextField(20);
mainPanel.add(lastNameField);
// Add Address field
mainPanel.add(new JLabel("Address:"));
addressField = new JTextField(20);
mainPanel.add(addressField);
// Add Mobile No field
mainPanel.add(new JLabel("Mobile No:"));
mobileField = new JTextField(20);
mainPanel.add(mobileField);
// Add Gender radio buttons
mainPanel.add(new JLabel("Gender:"));
JPanel genderPanel = new JPanel();
ButtonGroup genderGroup = new ButtonGroup();
maleRadioButton = new JRadioButton("Male");
femaleRadioButton = new JRadioButton("Female");
genderGroup.add(maleRadioButton);
genderGroup.add(femaleRadioButton);
genderPanel.add(maleRadioButton);
genderPanel.add(femaleRadioButton);
mainPanel.add(genderPanel);
// Add Your Interests checkboxes
mainPanel.add(new JLabel("Your Interests:"));
JPanel interestsPanel = new JPanel();
computerCheckBox = new JCheckBox("Computer");
sportsCheckBox = new JCheckBox("Sports");
musicCheckBox = new JCheckBox("Music");
interestsPanel.add(computerCheckBox);
interestsPanel.add(sportsCheckBox);
interestsPanel.add(musicCheckBox);
mainPanel.add(interestsPanel);
// Add Submit and Reset buttons
JButton submitButton = new JButton("Submit");
JButton resetButton = new JButton("Reset");
mainPanel.add(submitButton);
mainPanel.add(resetButton);
// Add action listeners for buttons
submitButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// Perform actions when the submit button is clicked
String firstName = firstNameField.getText();
String lastName = lastNameField.getText();
String address = addressField.getText();
String mobileNo = mobileField.getText();
String gender = maleRadioButton.isSelected() ? "Male" : "Female";
String interests = "";
if (computerCheckBox.isSelected()) {
interests += "Computer ";
}
if (sportsCheckBox.isSelected()) {
interests += "Sports ";
}
if (musicCheckBox.isSelected()) {
interests += "Music ";
}
// Display the collected information
JOptionPane.showMessageDialog(null, "First Name: " + firstName + "\n" +
"Last Name: " + lastName + "\n" +
"Address: " + address + "\n" +
"Mobile No: " + mobileNo + "\n" +
"Gender: " + gender + "\n" +
"Interests: " + interests);
}
});
resetButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// Perform actions when the reset button is clicked
firstNameField.setText("");
lastNameField.setText("");
addressField.setText("");
mobileField.setText("");
genderGroup.clearSelection();
computerCheckBox.setSelected(false);
sportsCheckBox.setSelected(false);
musicCheckBox.setSelected(false);
}
});
add(mainPanel);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new GUIForm().setVisible(true);
}
});
}
}
// ```
// In this example we have created a simple form with various input fields and buttons to collect user
// information such as first name, last name, email ID etc., We also added checkboxes for selecting
// interests in different categories like Computer Science, Sports or Music. The submit button will display all
// the entered data on screen using `JOptionPane`. Additionally there's another button named Reset which clears out any
// the entered details on screen using `JOptionPane`. Additionally there's another button named Reset which clears out any
// the entered details on clicking it while Reset Button clears out any previous data that was filled by the user
// the entered details on clicking it while Reset Button clears out any previously filled data from textfields.
// Note that you can customize your own layout of UI components according to your requirements using Java's
// Swing library. You may use other types of controls depending upon what kind of inputs are required by users
// in your application. Good luck!