假设我有5个菜单(文件,编辑,视图,窗口和帮助),现在我想将help
放在框架的右侧,并将其余部分保留在左侧,类似于此
+----------------------------------------------------------------------------+
| File | Edit | View | Window Help |
+----------------------------------------------------------------------------+
摆动可能吗?含蓄菜单?或者一些黑客/诡计?
help
不应该是真正的Menu
对象,它可以是任何可点击的对象(Jlabel
,...)
答案 0 :(得分:4)
您需要做的就是将水平胶水添加到您想要间隙的位置的JMenuBar。
menuBar.add(Box.createHorizontalGlue());
如,
import java.awt.Dimension;
import javax.swing.*;
public class MenuEg {
private static void createAndShowGui() {
JMenuBar menuBar = new JMenuBar();
menuBar.add(new JMenu("File"));
menuBar.add(new JMenu("Edit"));
menuBar.add(new JMenu("View"));
menuBar.add(new JMenu("Window"));
menuBar.add(Box.createHorizontalGlue());
menuBar.add(new JMenu("Help"));
JFrame frame = new JFrame("MenuEg");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.setJMenuBar(menuBar);
frame.getContentPane().add(Box.createRigidArea(new Dimension(600, 400)));
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}