java fx菜单栏上的文本

时间:2016-02-23 11:33:22

标签: css javafx fxml

我正在使用带有fxml文件的JavaFx编写应用程序以进行查看。如何在菜单右侧添加文本(如附图)。场景生成器允许我只添加菜单,但文本在左侧(白色框所在的位置),我必须禁用此菜单(因为它不是菜单)。 我也想改变这个菜单的样式,但它不起作用。只有一个菜单可以吗?。

我的fxml:

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.MenuItem?>

<MenuBar xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="pl.controler.MainMenuController">
    <menus>
        <Menu fx:id="fileMenu" mnemonicParsing="false" text="%file">
            <items>
                <MenuItem fx:id="closeMenuItem" mnemonicParsing="false" text="%close" />
            </items>
        </Menu>
        <Menu fx:id="menuHelp" mnemonicParsing="false" text="%help">
            <items>
                <MenuItem fx:id="aboutMenuItem" mnemonicParsing="false" text="%about.title" />
            </items>
        </Menu>
      <Menu fx:id="loginName" mnemonicParsing="false" style="font-weight: bold; color: black;">
        <items>
          <MenuItem mnemonicParsing="false" text="Action 1" />
        </items>
      </Menu>
    </menus>
</MenuBar>

附件:

enter image description here

1 个答案:

答案 0 :(得分:3)

如果您只需要右侧的文字,则可以使用Label。将MenuBarLabel换成例如AnchorPane以获得所需的布局:

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.control.Label?>

<AnchorPane xmlns:fx="http://javafx.com/fxml/1">
    <MenuBar AnchorPane.leftAnchor="0" AnchorPane.topAnchor="0">
        <Menu text="File">
            <items>
                <MenuItem text="Close"/>
            </items>
        </Menu>
        <Menu text="Help">
            <items>
                <MenuItem text="About"/>
            </items>
        </Menu>
    </MenuBar>
    <Label text="Some text" AnchorPane.rightAnchor="0" AnchorPane.topAnchor="0" AnchorPane.bottomAnchor="0" 
        style="-fx-font-weight: bold; -fx-text-fill: black; " />
</AnchorPane>

这给出了以下内容:

enter image description here

您可能希望尝试使用一些CSS来获得您想要的样式,但这会按照您需要的方式定位所有内容。一种非常快速的方式来设置样式,以便AnchorPane的样式与菜单栏一样,只是将styleClass="menu-bar"添加到AnchorPane元素:

<AnchorPane xmlns:fx="http://javafx.com/fxml/1" styleClass="menu-bar">

现在给出了

enter image description here

对于(可能)更强大的方法,将id="menu-bar-container"添加到菜单栏的AnchorPaneid="menu-bar"。然后,以下外部CSS将默认菜单栏样式移动到锚点窗格:

#menu-bar {
    -fx-padding: 0 ;
    -fx-background-color: transparent ;
    -fx-background-insets: 0 ;
    -fx-background-radius: 0 ;
}

#menu-bar-container {
    -fx-padding: 0.0em 0.666667em 0.0em 0.666667em; /* 0 8 0 8 */
    -fx-background-color:
        linear-gradient(to bottom, derive(-fx-base,75%) 0%, -fx-outer-border 90%),
        linear-gradient(to bottom, derive(-fx-base,46.9%) 2%, derive(-fx-base,-2.1%) 95%);
    -fx-background-insets: 0 0 0 0, 1 0 1 0;
    -fx-background-radius: 0, 0 ;
}