- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to set JCheckBoxMenuItem for a MenuItem in Java?
Let’s say we have a menu and within that we need to set the JCheckBoxMenuItem. Here’s the Menu −
JMenu editMenu = new JMenu("Edit"); editMenu.setMnemonic(KeyEvent.VK_E); menuBar.add(editMenu);
Now, set the JCheckBoxMenuItem and add it to the editMenu created above −
JCheckBoxMenuItem checkMenuItem = new JCheckBoxMenuItem("SelectAll"); checkMenuItem.setMnemonic(KeyEvent.VK_B); editMenu.add(checkMenuItem);
The following is an example to set JCheckBoxMenuItem for a MenuItem in Java −
Example
package my; import java.awt.Color; import java.awt.event.KeyEvent; import javax.swing.JCheckBoxMenuItem; import javax.swing.JFrame; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JMenuItem; import javax.swing.UIManager; public class SwingDemo { public static void main(final String args[]) { JFrame frame = new JFrame("MenuBar Demo"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JMenuBar menuBar = new JMenuBar(); UIManager.put("MenuBar.background", Color.ORANGE); JMenu fileMenu = new JMenu("File"); fileMenu.setMnemonic(KeyEvent.VK_F); menuBar.add(fileMenu); JMenuItem menuItem1 = new JMenuItem("New", KeyEvent.VK_N); fileMenu.add(menuItem1); JMenuItem menuItem2 = new JMenuItem("Open File", KeyEvent.VK_O); fileMenu.add(menuItem2); menuItem2.setEnabled(false); JMenu editMenu = new JMenu("Edit"); editMenu.setMnemonic(KeyEvent.VK_E); menuBar.add(editMenu); JMenuItem menuItem3 = new JMenuItem("Cut", KeyEvent.VK_C); editMenu.add(menuItem3); JMenu searchMenu = new JMenu("Search"); searchMenu.setMnemonic(KeyEvent.VK_S); menuBar.add(searchMenu); JMenu projectMenu = new JMenu("Project"); projectMenu.setMnemonic(KeyEvent.VK_P); menuBar.add(projectMenu); JMenu runMenu = new JMenu("Run"); runMenu.setMnemonic(KeyEvent.VK_R); menuBar.add(runMenu); JCheckBoxMenuItem checkMenuItem = new JCheckBoxMenuItem("SelectAll"); checkMenuItem.setMnemonic(KeyEvent.VK_B); editMenu.add(checkMenuItem); frame.setJMenuBar(menuBar); frame.setSize(550, 350); frame.setVisible(true); } }
Output
- Related Articles
- How to disable a MenuItem in Java?
- JavaFX example to set action to the "exit" MenuItem
- How to embed nodes in a JavaFX MenuItem?
- How to set vertical alignment for a component in Java?
- How to set JAVA_HOME for Java in Windows?
- How to set JAVA_HOME for Java in Linux?
- How to set FlowLayout for JFrame in Java?
- How to set style for JTextPane in Java?
- How to set minimum size limit for a JFrame in Java
- How to set the maximized bounds for a Frame in Java?
- How to set JAVA_HOME for Java in Mac OS?
- How to set tooltip text for JCheckBox in Java?
- How to set default button for JFrame in Java?
- How to set Echo Char for JPasswordField in Java?
- How to set Palette Layer for JDesktopPane in Java?

Advertisements