我正在尝试在我的 java 菜单中将 ActionListener 添加到 JMenuItem 。
这是菜单的屏幕截图:
我想将 ActionListener 添加到“矩形”JMenuItem,以便在单击“矩形”菜单项时显示矩形形状。我多次尝试添加 ActionListener,但每次都失败。
这是我的代码:
类“menubar.java”:
import javax.swing.*;
public class menubar extends JFrame{
public menubar(){
JMenuBar menubar = new JMenuBar();
setJMenuBar(menubar);
JMenu shape = new JMenu("Shape");
menubar.add(shape);
JMenuItem rect = new JMenuItem("Rectangle");
shape.add(rect);
JMenuItem star = new JMenuItem("Star");
shape.add(star);
JMenu color = new JMenu("Color");
menubar.add(color);
JMenuItem black = new JMenuItem("Black");
color.add(black);
JMenuItem orange = new JMenuItem("Orange");
color.add(orange);
}
public static void main(String[] args) {
menubar gui = new menubar();
gui.setTitle("Menu Bar");
gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
shapes SPS = new shapes();
gui.add(SPS);
gui.setSize(500,300);
gui.setVisible(true);
gui.setLocationRelativeTo(null);
}
}
类“shapes.java”:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class shapes extends JPanel{
int midX = 220;
int midY = 90;
int radius[] = {60,20,50,20};
int nPoints = 16;
int[] X = new int[nPoints];
int[] Y = new int[nPoints];
public void paintComponent(Graphics gphcs){
super.paintComponent(gphcs);
this.setBackground(Color.WHITE);
gphcs.setColor(Color.BLUE);
gphcs.fillRect(20,35,100,30);
gphcs.setColor(Color.RED);
gphcs.drawString("Welcome to Java", 20, 20);
for (int i=0; i < nPoints; i++) {
double x = Math.cos(i * ((2 * Math.PI) / nPoints)) * radius[i % 4];
double y = Math.sin(i * ((2 * Math.PI) / nPoints)) * radius[i % 4];
X[i] = (int) x + midX;
Y[i] = (int) y + midY;
}
gphcs.setColor(Color.GREEN);
gphcs.fillPolygon(X, Y, nPoints);
}
}
如果有人帮助我解决这个问题,我将不胜感激。
谢谢你的时间..