August 2004
Intermediate to advanced
480 pages
9h 41m
English
The components we discuss in this section are commonly used controls that users need in applications. This is by no means an exhaustive look at the controls Swing makes available. It's just what you need to get started. Anyway, after you are used to working with a few of the controls, it is an easy step to read the API for what other kinds of components you get for free.
This is an area. Just a plain area, corresponding to a label in Visual Basic. You can put text on it, which is its usual purpose. Or an image, which is probably a good idea to put there. Labels are just regular folk. Create them like this:
JLabel label = new JLabel("You must conform.");
The text passed to the constructor will show up on the label, ...
Read now
Unlock full access