Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8203093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T07:25:33+00:00 2026-06-07T07:25:33+00:00

I am working on a project and I want to set Mnemonic on buttons.

  • 0

I am working on a project and I want to set Mnemonic on buttons. But the problem is Mnemonic works on pairing key example (Alt+F) etc. But I want it to be on single key.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T07:25:35+00:00Added an answer on June 7, 2026 at 7:25 am
    • have look at KeyBindings,

    • then you can to attach any Key to the JButton

    Here is one example code for your help, just Press C on the Keyboard :

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.Action;
    
    public class ButtonExample
    {
        private JFrame frame;
        private JButton button;
    
        private void displayGUI()
        {
            frame = new JFrame("Button Mnemonic Example");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    
            JPanel contentPane = new JPanel();      
            Action buttonAction = new ButtonAction("CLICK ME"
                                    , "This is a Click Me JButton");
            button = new JButton(buttonAction);                                             
            button.getInputMap().put(KeyStroke.getKeyStroke('c'), "Click Me Button");
            button.getActionMap().put("Click Me Button", buttonAction);
    
            contentPane.add(button);
            frame.setContentPane(contentPane);
            frame.pack();
            frame.setLocationByPlatform(true);
            frame.setVisible(true);
        }
    
        class ButtonAction extends AbstractAction
        {
            public ButtonAction(String text, String desc)
            {
                super(text);
                putValue(SHORT_DESCRIPTION, desc);
            }
    
            @Override
            public void actionPerformed(ActionEvent ae)
            {
                JOptionPane.showMessageDialog(frame, "BINGO, you SAW me.");
            }
        }
    
        public static void main(String... args)
        {
            SwingUtilities.invokeLater(new Runnable()
            {
                public void run()
                {
                    new ButtonExample().displayGUI();
                }
            });
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on project where I want to show UIActionsheet with three buttons
Hello Im working on a django project where i want to store a set
I'm working on android project and I want to set some variable on running
I am working on a project, in which I want to set an alarm
I am working on a Yii project, in the menu I want to set
I am working with UIWebView project and I want to load an HTML file
I am working on blackberry project where i want to download image & save
I'm working on a project where we want to dynamically change the IP address
I'm working on a project which I want to build up OO. Now I
I'm working on a project and we want to handle our logging using log4j.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.