是否可以使用选定的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:
,但我现在写的只是在菜单栏上重新创建一个新的菜单,除了我已经得到的。
This:
JMenu menu = new JMenu(name);
需要更改为:
menu = new JMenu(name);
,其中menu
是类的实例成员:
private JMenu menu;
然后在actionPerformed(...)
中,只需调用:
menu.setText(current)
而不是重新创建。