Logo FluentUI

DropDownButton QML Type

一个下拉菜单按钮组件,允许用户点击按钮后弹出一个菜单。. More...

Import Statement: import FluentUI.Controls 1.0

Properties

Detailed Description

DropDownButton 是一个自定义按钮,集成了一个可弹出的菜单。用户可以设置菜单项的内容、最大显示数量以及图标大小等属性。点击按钮后,菜单会在按钮下方弹出。

示例用法:

 DropDownButton {
     maxCount: 8
     icon.name: FluentIcons.graph_ChevronDown
     icon.width: 12
     icon.height: 12
     // 在此处添加您的菜单项
 }

Property Documentation

contentData : alias

菜单项的内容数据。


icon.height : int

按钮图标的高度。


icon.name : url

按钮图标的名称。


icon.width : int

按钮图标的宽度。


maxCount : int

菜单中可以显示的最大项数。