IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

ToolSeparator QML Type

Separates a group of items in a toolbar from adjacent items.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

ToolSeparator QML Type

  • Import Statement: import QtQuick.Controls

  • Inherits: Control

  • Group: ToolSeparator is part of qtquickcontrols-separators

Detailed Description

ToolSeparator is used to visually distinguish between groups of items in a toolbar by separating them with a line. It can be used in horizontal or vertical toolbars by setting the orientation property to Qt.Vertical or Qt.Horizontal, respectively.

Image non disponible
 
Sélectionnez
ToolBar {
    RowLayout {
        anchors.fill: parent

        ToolButton {
            text: qsTr("Action 1")
        }
        ToolButton {
            text: qsTr("Action 2")
        }

        ToolSeparator {}

        ToolButton {
            text: qsTr("Action 3")
        }
        ToolButton {
            text: qsTr("Action 4")
        }

        ToolSeparator {}

        ToolButton {
            text: qsTr("Action 5")
        }
        ToolButton {
            text: qsTr("Action 6")
        }

        Item {
            Layout.fillWidth: true
        }
    }
}

See Also

Property Documentation

 

[read-only] horizontal : bool

This property holds whether orientation is equal to Qt.Horizontal.

It is useful for customizing ToolSeparator.

See Also

See also orientation, vertical

orientation : enumeration

This property holds the orientation of the tool separator.

Possible values:

Constant

Description

Qt.Horizontal

A horizontal separator is used in a vertical toolbar.

Qt.Vertical

A vertical separator is used in a horizontal toolbar. (default)

[read-only] vertical : bool

This property holds whether orientation is equal to Qt.Vertical.

It is useful for customizing ToolSeparator.

See Also

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+