是否可以使用选定的JMenuItem重命名JMenu标题?
我正在使用ActionListener来做到这一点:
public MenuBar(){
.
.
.
add(createMenu("Choose Bow: "));
.
.
.
public JMenu createmenu(String name){
JMenu menu = new JMenu(name);
JRadioButtonMenuItem bow = new JRadioButtonMenuItem("Pink");
bow.setHorizontalTextPosition(JMenuItem.RIGHT);
bow.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent evt){
String current = "Pink";
add(createMenu(current));
menu.revalidate();
}
});
group.add(bow);
.
.
.
menu.add(bow);
menu.revalidate();
return menu;
}
我希望菜单说的是
Pink
而不是Choose Bow:
,但是我现在写的只是在菜单栏中重新创建一个新菜单,除了已有的菜单。 最佳答案
这个:JMenu menu = new JMenu(name);
需要更改为:menu = new JMenu(name);
其中,menu
是该类的实例成员:private JMenu menu;
然后在actionPerformed(...)
中,只需调用:menu.setText(current)
而不是重新创建它。