我刚刚开始使用Swing,我正在尝试绘制一个自定义形状的按钮,在此示例中为三角形。我在下面的代码中调用了JButton子类'ShiftingButton',因为它有不寻常的行为。当鼠标进入其区域时,将重新绘制其原始位置的偏移量。此外,除了原始位置之外还绘制了移位的偏移版本,以便原始版本和移位版本一起出现。也就是说,当我运行此代码时,按钮显示为沿窗口左边缘的三角形。然后当我在按钮上运行鼠标时,会绘制一个新的三角形(除了旧的三角形),向下移动到右边大约10个像素。调整窗口大小会更改幻像按钮与原始按钮的偏移量。
尝试使用鼠标单击显示只有原始的,正确定位的按钮处于活动状态。偏移幻像按钮的区域未激活。
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;
import java.awt.Polygon;
public class ShiftingButton extends JButton implements ActionListener {
private Polygon shape;
public ShiftingButton () {
initialize();
addActionListener(this);
}
protected void initialize() {
shape = new Polygon();
setSize(120, 120);
shape.addPoint(0, 0);
shape.addPoint(0, 60);
shape.addPoint(90, 0);
setMinimumSize(getSize());
setMaximumSize(getSize());
setPreferredSize(getSize());
}
// Hit detection
public boolean contains(int x, int y) {
return shape.contains(x, y);
}
@Override
public void paintComponent (Graphics g) {
System.err.println("paintComponent()");
g.fillPolygon(shape);
}
protected void paintBorder(Graphics g) {
}
@Override
public void actionPerformed (ActionEvent ev) {
System.out.println("ShiftingButton ActionEvent!");
}
public static void main (String[] args) {
JFrame frame = new JFrame();
JPanel panel = new JPanel();
ShiftingButton button = new ShiftingButton();
panel.add(button);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(panel);
frame.pack();
frame.setVisible(true);
}
}
答案 0 :(得分:2)
您未能在重写的super.paintComponent(g)
方法中调用paintComponent(...)
。此外,在覆盖Base
类的方法时,总是尽量保持方法的访问说明符尽可能相同。在这种情况下它是protected
而不是public
:-)现在函数应该是这样的:
@Override
protected void paintComponent (Graphics g) {
System.err.println("paintComponent()");
super.paintComponent(g);
g.fillPolygon(shape);
}
此外,由于您正在使用自定义形状进行绘制,因此您再次无法为相关的ContentAreaFilled
指定JButton
属性,因此在构造函数中,您应该编写{{3 ,它可以很好地工作。虽然如果这不起作用(由于文档中指定的原因),那么您必须使用普通的Opaque
属性并使用{{1将false
设置为此JButton
}: - )
以下是修改后的代码:
setOpaque(false)