java-制作按钮

我在这里为我的游戏制作菜单,可以按“开始”按钮在屏幕上导航.我正在尝试为该类实现一个单独的按钮,但是按照我布置CustomButtons类的方式,它只能以一个具有功能的按钮来工作,为了解决此问题,我决定制作一个单独的“按钮”方法,其中包含按钮的参数.我在绘画组件中调用了此控件,以确保将其显示在屏幕上,但是仅将文本“ START”显示在屏幕上.按钮的背景颜色,边框,字体等不会随调用而改变.

 

 

public class CustomButton extends JButton implements MouseListener {

    Dimension size = new Dimension(100, 50);

    boolean hover = false;
    boolean click = false;
    boolean isMethodCalled = false;

    String text = "";

    public CustomButton(String text, Button bb) {
        setVisible(true);
        setFocusable(true);
        setContentAreaFilled(false);
        setBorderPainted(false);

        this.text = text;

        addMouseListener(this);
    }

    public void Button(Graphics g) {
        g.setColor(new Color(255, 255, hover ? 180 : 102 ));
        g.fillRect(0, 0, 250, 7);
        g.fillRect(0, 0, 7, 150);

        g.setColor(Color.ORANGE); // button background color
        g.fillRect(14, 14, 222, 122);
        g.setColor(Color.WHITE); // text color 
        g.setFont(Font.decode("arial-BOLD-24"));

        FontMetrics metrics = g.getFontMetrics();
        int width = metrics.stringWidth(text);
        g.drawString(text, 17, 40);
    }

    public void paintComponent(Graphics g) {
        super.paintComponent(g);

        Button menu = new Button();
    }

    public void setButtonText(String text) {
        this.text = text;
    }
    public String getButtonText(String text) {
        return text;
    }

    public void mouseEntered(MouseEvent e) {
        hover = true;
    }
    public void mouseExited(MouseEvent e) {
        hover = false;
    }
    public void mousePressed(MouseEvent e) {
        click = true;
    }
    public void mouseReleased(MouseEvent e) {
        click = false;
    }
    public void mouseClicked(MouseEvent e) {
    }
}

任何人都知道我该怎么做,以便一旦从“ Buttons”方法中调用该按钮后该按钮便能正常工作,以便在将所有图形设置都设置在paintComponent方法中的情况下,该按钮的显示效果应与原来一样.

这不是当前正在发生的事情.我不希望这种情况发生:

这是我想对按钮进行的​​操作:

最佳答案

要获得所需的自定义外观,最好是自定义按钮扩展JLabel.下面的代码演示了如何通过扩展JLabel来编写自定义按钮.

 

此按钮支持单击事件.我们可以添加ActionListeners来监听点击事件.当用户将鼠标悬停在其上方时,它将背景颜色更改为棕色.

 

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.ArrayList;
import java.util.List;

public class CustomButton extends JLabel implements MouseListener {

  private List<ActionListener> actionListeners = new ArrayList<>();

  public CustomButton(String text) {
    super(text);
    setOpaque(true);
    setForeground(Color.white);
    setBackground(Color.orange);
    setFont(getFont().deriveFont(40.0f));
    addMouseListener(this);
  }

  public void addActionListener(ActionListener listener) {
    actionListeners.add(listener);
  }

  public void removeActionListener(ActionListener listener) {
    actionListeners.remove(listener);
  }

  @Override
  public void mouseClicked(MouseEvent e) {
    for (ActionListener listener : actionListeners) {
      listener.actionPerformed(new ActionEvent(this, 0, "click"));
    }
  }

  @Override
  public void mousePressed(MouseEvent e) {
  }

  @Override
  public void mouseReleased(MouseEvent e) {
  }

  @Override
  public void mouseEntered(MouseEvent e) {
    setBackground(new Color(185, 122, 87));
  }

  @Override
  public void mouseExited(MouseEvent e) {
    setBackground(Color.orange);
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setBackground(Color.darkGray);
    frame.getContentPane().setLayout(new FlowLayout());

    CustomButton customButton = new CustomButton("START");
    customButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        JOptionPane.showMessageDialog(frame, "Button clicked");
      }
    });

    frame.getContentPane().add(customButton);
    frame.setBounds(300, 200, 400, 300);
    frame.setVisible(true);
  }
}
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值