This example describes the Basics for building the Menu using GWT. The steps involved in Building the Menu Structure are described below:-
final Label label = new Label("Move the cursor over the
Menu item")
Here we are declaring label. Label is a widget that contains text.
Command cmd = new Command()
Command is an interface that encapsulates an action
for execution. This Interface can be often implemented with an anonymous inner class.
Window.alert("Menu item have been selected")
This is an alert whenever an Menu item is selected.
Menu Bar File = new MenuBar(true)
Creating a Menu bar named File. A Menu bar can contain any number of items.
File.addItem("New",cmd)
This is a method for adding item to the Menubar.Here we are adding New to
the Menu bar named File
MenuBarex.java
|
Main.gwt.xml
|
Output of the program
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Creating Menu using GWT View All Comments
Post your Comment