

- HOW TO ADD CHECK BOXES IN WORD THAT CAN BE CHECKED CODE
- HOW TO ADD CHECK BOXES IN WORD THAT CAN BE CHECKED DOWNLOAD
ImageIcon leftButtonIcon = createImageIcon("images/right.gif")
HOW TO ADD CHECK BOXES IN WORD THAT CAN BE CHECKED CODE
The bold code is the code that would remain if the buttons had no images. Item listener, which is notified when the check box is selected or deselected.īuttonDemo.java that creates the buttons in the previous example and reacts to button clicks. Generally, you implement anĪction listener, which is notified every time the user clicks the button. How you implement event handling depends on the type of button you use and how you use it. For example, you could provide gray versions of the images used in the left and right buttons.

However, you could provide an image to be substituted for the normal image. When a button is disabled, the look and feel automatically generates the button's disabled appearance. For example, Alt-M would click the Middle button in ButtonDemo. In most look and feels, the user can click a button by pressing the Alt key and the mnemonic. The underlined letter in each button's text shows the mnemonic the keyboard alternative for each button. In ButtonDemo, each button has its text in a different place, relative to its image.

It enables the middle button and the left button, and disables itself.Īs the ButtonDemo example shows, a Swing button can display both text and an image. It disables the middle button (and itself, since it is no longer useful) and enables the right button. Alternatively, to compile and run the example yourself, consult the example index.
HOW TO ADD CHECK BOXES IN WORD THAT CAN BE CHECKED DOWNLOAD
Java™ Web Start ( download JDK 7 or later).
