Lesson 12 - GUI Applications
Java GUI applications can do many things that Java applets cannot, such as reading and writing files, which you'll learn how to do in the next unit. In this unit you'll learn to use the rest of Java's AWT classes.
Lesson 12 sections are as follows:
| 12.1 GUI Applications |
Learn how to create Graphical User Interface [GUI] applications. |
| 12.2 Frame & Friends |
Learn about Frame, Toolkit, and Window classes which will house your applications. |
| 12.3 Checkboxes |
Learn how to use the Checkbox class to create simple checkboxes and radio buttons. |
| 12.4 Lists |
Use Java's List and Choice classes to get restricted textual input. |
| 12.5 Event Adapters |
Learn how to use inner classes to subclass Java's event adapters. |
| 12.6 Menus |
Learn how to create a menu system for your Java applications.
|
Continue with section 12.1 GUI Applications
|