ListItemFlatButton QML 类型
为Neptune 3 UI中的列表项、列表和通知提供GUI按钮。 更多...
自 | Qt 5.11 |
继承 |
属性
- closeButtonVisible : bool
- symbolFlatButton : string
- textFlatButton : string
信号
详细描述
ListItemFlatButton
提供了同时具有平板按钮和关闭按钮的列表项类型。平板按钮支持单行文本;其宽度与文本宽度对齐。关闭按钮的可见性可以用closeButtonVisible
属性指定。
下方的代码片段展示了如何使用ListItemFlatButton
import QtQuick 2.10 import shared.controls 1.0 Item { id: root ListView { model: 3 delegate: ListItemFlatButton { implicitWidth: Sizes.dp(765) implicitHeight: Sizes.dp(104) icon.name: "ic-update" symbolFlatButton: Style.image("ic-favorite") subText: "subtitle" text: "ListItem with button text" textFlatButton: "Text" closeButtonVisible: true } } }
有关Neptune 3 UI中可用的组件列表,请参阅Neptune 3 UI组件和接口.
属性说明
closeButtonVisible : bool |
此属性指定关闭按钮是否可见。默认值为false。
symbolFlatButton : string |
此属性保存平板按钮图标的路径。
textFlatButton : string |
此属性保存要在平板按钮上显示的文本。
信号说明
©2019 瑞典Luxoft AB。本文档中包含的文档贡献是各自所有者的版权。
提供的文档根据Free Software Foundation发布的GNU自由文档许可协议版本1.3许可。
Qt及其相关标志是芬兰Qt公司及其在全球的商标。所有其他商标均属于各自所有者。