永发信息网

亲,可以问下如何在 JAVA appcation 程序中添加按钮么?

答案:2  悬赏:10  手机版
解决时间 2021-02-04 19:41
  • 提问者网友:我一贱你就笑
  • 2021-02-04 02:23
亲,可以问下如何在 JAVA appcation 程序中添加按钮么?
最佳答案
  • 五星知识达人网友:一袍清酒付
  • 2021-02-04 03:41

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;



public class ButtonTest
{
   public static void main(String[] args)
   {
      EventQueue.invokeLater(new Runnable()
         {
            public void run()
            {
               ButtonFrame frame = new ButtonFrame();
               frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               frame.setVisible(true);
            }
         });
   }
}



class ButtonFrame extends JFrame
{
   public ButtonFrame()
   {
      setTitle("ButtonTest");
      setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);


      // create buttons
      JButton yellowButton = new JButton("Yellow");
      JButton blueButton = new JButton("Blue");
      JButton redButton = new JButton("Red");


      buttonPanel = new JPanel();


      // add buttons to panel
      buttonPanel.add(yellowButton);
      buttonPanel.add(blueButton);
      buttonPanel.add(redButton);


      // add panel to frame
      add(buttonPanel);


      // create button actions
      ColorAction yellowAction = new ColorAction(Color.YELLOW);
      ColorAction blueAction = new ColorAction(Color.BLUE);
      ColorAction redAction = new ColorAction(Color.RED);


      // associate actions with buttons
      yellowButton.addActionListener(yellowAction);
      blueButton.addActionListener(blueAction);
      redButton.addActionListener(redAction);
   }


   
   private class ColorAction implements ActionListener
   {
      public ColorAction(Color c)
      {
         backgroundColor = c;
      }


      public void actionPerformed(ActionEvent event)
      {
         buttonPanel.setBackground(backgroundColor);
      }


      private Color backgroundColor;
   }


   private JPanel buttonPanel;


   public static final int DEFAULT_WIDTH = 300;
   public static final int DEFAULT_HEIGHT = 200;
}
全部回答
  • 1楼网友:十鸦
  • 2021-02-04 04:38
JAVA Swing部分有对象的类,自己查阅一下,new一个就行了。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯