一个菜单是呈现给用户的选项或命令的列表,通常菜单中包含的执行某些操作的项目。菜单的内容称为菜单项,菜单栏包含多个菜单。
通常,按钮在用户界面应用程序中进行控制,单击该按钮将执行相应的操作。
甲SplitMenuButton提供两个按钮和一个菜单的功能。它分为两个区域-操作区域和菜单区域。单击这些区域之一时,将显示相应的功能。
您可以通过实例化javafx.scene.control.SplitMenuButton类来创建拆分菜单按钮。
下面的示例演示了SplitMenuButton的创建。
import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.MenuItem; import javafx.scene.control.SplitMenuButton; import javafx.scene.image.ImageView; import javafx.scene.layout.HBox; import javafx.scene.text.Font; import javafx.scene.text.FontPosture; import javafx.scene.text.FontWeight; import javafx.stage.Stage; public class SplitMenuButtonExample extends Application { public void start(Stage stage) { //Creating an ImageView ImageView img = new ImageView("UIControls/globe.png"); img.setFitWidth(20); img.setFitHeight(20); //Creating a label Label label = new Label("Select A Language"); Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 12); label.setFont(font); //Creating a menu SplitMenuButton menu = new SplitMenuButton(); //Setting text to the SplitMenuButton menu.setText("Language"); //Setting an image to the button menu.setGraphic(img); //Creating menu Items menu.setMnemonicParsing(true); MenuItem item1 = new MenuItem("Telugu"); MenuItem item2 = new MenuItem("Hindi"); MenuItem item3 = new MenuItem("English"); MenuItem item4 = new MenuItem("Tamil"); MenuItem item5 = new MenuItem("Malayalam"); //Adding all the menu items to the menu menu.getItems().addAll(item1, item2, item3, item4, item5); //Adding the choice box to the scene HBox layout = new HBox(25); layout.getChildren().addAll(label, menu); layout.setPadding(new Insets(15, 50, 50, 130)); layout.setStyle("-fx-background-color: BEIGE"); //Setting the stage Scene scene = new Scene(layout, 595, 200); stage.setTitle("Split Menu Button"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
输出结果
本文向大家介绍如何在JavaFX中创建RadioMenuItem?,包括了如何在JavaFX中创建RadioMenuItem?的使用技巧和注意事项,需要的朋友参考一下 菜单是提供给用户的选项或命令的列表,通常菜单包含执行某些操作的项目。菜单的内容称为菜单项,菜单栏包含多个菜单。 JavaFx支持三种菜单项,即-检查菜单项,自定义菜单项和单选菜单项。 RadioMenuItem RadioMenuI
本文向大家介绍如何在JavaFX中创建ButtonBar?,包括了如何在JavaFX中创建ButtonBar?的使用技巧和注意事项,需要的朋友参考一下 以下示例演示了ButtonBar的创建。 输出结果
本文向大家介绍如何在JavaFX中创建MenuButton?,包括了如何在JavaFX中创建MenuButton?的使用技巧和注意事项,需要的朋友参考一下 一个菜单 是呈现给用户的选项或命令的列表,通常菜单中包含的执行某些操作的项目。菜单的内容称为菜单项,菜单栏包含多个菜单。 通常,按钮在用户界面应用程序中进行控制,单击该按钮将执行相应的操作。 MenuButton是一个简单的按钮,在单击它时显示
本文向大家介绍如何在JavaFX中创建ProgressIndicator?,包括了如何在JavaFX中创建ProgressIndicator?的使用技巧和注意事项,需要的朋友参考一下 以下示例演示了 ProgressIndicator的创建。 输出结果
本文向大家介绍如何在JavaFX中创建SplitPane?,包括了如何在JavaFX中创建SplitPane?的使用技巧和注意事项,需要的朋友参考一下 以下示例演示了SplitPane的创建。 输出结果
本文向大家介绍如何在JavaFX中创建TabPane?,包括了如何在JavaFX中创建TabPane?的使用技巧和注意事项,需要的朋友参考一下 TabPane是一个GUI组件,使用它可以在单个窗口中加载多个文档。选项卡窗格具有标题区域和内容区域,您可以通过单击各个选项卡的标题在它们之间切换。您可以通过实例化javafx.scene.control.TabPane类来创建选项卡窗格。 创建标签 选项