Main Window vs. Dialog Box

5
Main Window vs. Dialog Box Main Window Dialog Box Initializ ation Resul t

description

Main Window vs. Dialog Box. Main Window. Dialog Box. Initialization. Result. Dialog Box. Modal and modeless dialog box Common and custom dialog boxes Bring up and down a dialog box Initialization from main window to dialog box Data returning from the dialog box GUI components (Controls) - PowerPoint PPT Presentation

Transcript of Main Window vs. Dialog Box

Page 1: Main Window vs. Dialog Box

Main Window vs. Dialog Box

Main Window Dialog Box

Initialization

Result

Page 2: Main Window vs. Dialog Box

Dialog Box

• Modal and modeless dialog box

• Common and custom dialog boxes

• Bring up and down a dialog box

• Initialization from main window to dialog box

• Data returning from the dialog box

• GUI components (Controls)

• OK and Cancel in a modal dialog box

Page 3: Main Window vs. Dialog Box

GUI Components(Controls)

• Label, Textbox, Button, Check Box, Radio Button, List, …

• Properties and event handlers of GUI components

Page 4: Main Window vs. Dialog Box

Controls in Java (1)

• Control Properties in common: (Name), Text, Location, Size, Visible, Enabled

• JLabel: (getText, setText)

• JButton (getText, setText; ActionListner: actionPerformed)

• JTextField (getText, setText; ActionListner: actionPerformed)

Page 5: Main Window vs. Dialog Box

An Example