从合成器中排除某些Jmenu的



我在XML文件中使用Synth L&F,我设置了到目前为止的所有内容,但是没有我有一个嵌套的JMenu,我不希望嵌套的JMenu采用顶部JMenu的样式。

    JMenu accountMenu = new JMenu("Manage Account");
    JMenuItem editUsername = new JMenuItem("Change Username");
    JMenuItem editPassword = new JMenuItem("Change Password");
    accountMenu.add(editUsername);
    accountMenu.add(editPassword);
    fileMenu.add(accountMenu);

这只是从我的代码中截取并编辑以适应,不代表实际的代码。

然后这是我正在使用的Synth XML I片段。

<!-- ================================= -->
<!-- MENU -->
<!-- ================================= -->
<style id="MenuStyle">
    <insets top="2" bottom="2" right="10" left="7" />
    <state>
        <font name="Calibre" size="14" style="BOLD" />
        <color value="#cccccc" type="TEXT_FOREGROUND" />
    </state>
    <state value="DISABLED">
        <color value="WHITE" type="TEXT_FOREGROUND" />
    </state>
    <state value="SELECTED">
        <imagePainter method="MenuBackground" path="Bin/Images/headerbarActive.jpg"
            sourceInsets="0 0 0 0" />
        <color value="WHITE" type="TEXT_FOREGROUND" />
    </state>
</style>
<bind style="MenuStyle" type="region" key="Menu" />
<!-- ================================= -->
<!-- MENU ITEM-->
<!-- ================================= -->
<style id="MenuItemStyle">
    <insets top="3" bottom="3" right="20" left="5" />
    <state>
        <imagePainter method="MenuItemBackground" path="Bin/Images/menuItem.jpg"
            sourceInsets="0 0 0 0" />
        <font name="Calibre" size="14" style="PLAIN" />
        <color value="#cccccc" type="TEXT_FOREGROUND" />
    </state>
    <state value="MOUSE_OVER">
        <imagePainter method="MenuItemBackground" path="Bin/Images/menuItemActive.jpg"
            sourceInsets="0 0 0 0" />
        <color value="#000000" type="TEXT_FOREGROUND" />
    </state>
    <state value="DISABLED">
        <color value="WHITE" type="TEXT_FOREGROUND" />
    </state>
</style>
<bind style="MenuItemStyle" type="region" key="MenuItem" />

现在我要瞄准的目标是AccountMenu JMenu并赋予它与JMenuItems相同的样式而不是JMenus

更清楚,请参见图:

菜单布局http://avengerpaintball.co.za/screen01.jpg

文件是一个JMenu以及管理帐户。所以现在帐户菜单采用文件菜单的样式,这不起作用,因为它们有不同的背景图像。

谢谢

你的意思是??

import javax.swing.*;
import javax.swing.plaf.synth.SynthLookAndFeel;
public class ButtonRollover extends JFrame {
    private static final long serialVersionUID = 1L;
    public ButtonRollover() {
        JMenuBar fileMenu = new JMenuBar();
        setJMenuBar(fileMenu);
        JMenu accountMenu = new JMenu("Manage Account");
        JMenuItem editUsername = new JMenuItem("Change Username");
        JMenuItem editPassword = new JMenuItem("Change Password");
        accountMenu.add(editUsername);
        accountMenu.add(editPassword);
        fileMenu.add(accountMenu);
    }
    public static void main(String[] args) {
        try {
            SynthLookAndFeel laf = new SynthLookAndFeel();
            laf.load(ButtonRollover.class.getResourceAsStream("menusynt.xml"), ButtonRollover.class);
            UIManager.setLookAndFeel(laf);
        } catch (Exception e) {
            e.printStackTrace();
        }
        ButtonRollover frame = new ButtonRollover();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 200);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }
}

和from file

<?xml version="1.0" encoding="UTF-8"?>
<root>
<!-- ================================= -->
<!-- MENU menusynt.xml -->
<!-- ================================= -->
<style id="MenuStyle">
    <insets top="2" bottom="2" right="10" left="7" />
    <state>
        <font name="Calibre" size="14" style="BOLD" />
        <color value="#cccccc" type="TEXT_FOREGROUND" />
    </state>
    <state value="DISABLED">
        <color value="WHITE" type="TEXT_FOREGROUND" />
    </state>
    <state value="SELECTED">
        <!--<imagePainter method="MenuBackground" path="src/Paint/Images/failed.png"
            sourceInsets="0 0 0 0" />-->
        <color value="WHITE" type="TEXT_FOREGROUND" />
    </state>
</style>
<bind style="MenuStyle" type="region" key="Menu" />
<!-- ================================= -->
<!-- MENU ITEM-->
<!-- ================================= -->
<style id="MenuItemStyle">
    <insets top="3" bottom="3" right="20" left="5" />
    <state>
        <!-- <imagePainter method="MenuItemBackground" path="src/Paint/Images/passed.png"
            sourceInsets="0 0 0 0" />-->
        <font name="Calibre" size="14" style="PLAIN" />
        <color value="#cccccc" type="TEXT_FOREGROUND" />
    </state>
    <state value="MOUSE_OVER">
       <!--  <imagePainter method="MenuItemBackground" path="src/Paint/Images/failed.png"
            sourceInsets="0 0 0 0" />-->
        <color value="#000000" type="TEXT_FOREGROUND" />
    </state>
    <state value="DISABLED">
        <color value="WHITE" type="TEXT_FOREGROUND" />
    </state>
</style>
<bind style="MenuItemStyle" type="region" key="MenuItem" />
</root>

最新更新