ToolButton QML Type
Provides a button type that is typically used within a ToolBar. 更多...
Import Statement: | import QtQuick.Controls 1.4 |
开始支持版本: | Qt 5.1 |
基类: |
详细描述
ToolButton is functionally similar to Button, but can provide a look that is more suitable within a ToolBar.
ApplicationWindow { ... toolBar: ToolBar { RowLayout { ToolButton { iconSource: "new.png" } ToolButton { iconSource: "open.png" } ToolButton { iconSource: "save-as.png" } Item { Layout.fillWidth: true } CheckBox { text: "Enabled" checked: true } } } }
You can create a custom appearance for a ToolButton by assigning a ButtonStyle.