Difference between a MenuItem and a CheckboxMenuItem?
Answer / satheesh kannan
MenuItem is associated with a single event where as
CheckBoxMenuItem is associated with two events(it is having
a toggle state-enable/disable)
File->open is best example of menu item , it opens a "open
dialog" box when we click this is taken as a single event,
View-->status bar is a checkboxmenuitems, which has two
states, If it "on", the status bar gets displayed in IE,if
we click it again its gets "Off", the status bar is hidden.
(similar to a checkbox)
| Is This Answer Correct ? | 4 Yes | 0 No |
how to convert Java project into Maven ?
What are the different conditional statements?
What are advantages of exception handling in java?
what is the use of Clonable,and serializable interface?
i need source code for income tax program using java inheritance
how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? : Java thread
Can we rethrow the same exception from catch handler?
Why is prepared Statement, Callable Statement used for? What is the need of Batch updates?
How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?
What are variable arguments or varargs?
What is the difference between the >> and >>> operators?
What is basic concept of static in java ?