SystemPalette QML Type
Provides access to the Qt palettes 更多...
Import Statement: | import QtQuick 2.7 |
属性
- alternateBase : color
- base : color
- button : color
- buttonText : color
- colorGroup : enumeration
- dark : color
- highlight : color
- highlightedText : color
- light : color
- mid : color
- midlight : color
- shadow : color
- text : color
- window : color
- windowText : color
详细描述
The SystemPalette type provides access to the Qt application palettes. This provides information about the standard colors used for application windows, buttons and other features. These colors are grouped into three color groups: Active
, Inactive
, and Disabled
. See the QPalette documentation for details about color groups and the properties provided by SystemPalette.
This can be used to color items in a way that provides a more native look and feel.
The following example creates a palette from the Active
color group and uses this to color the window and text items appropriately:
import QtQuick 2.0 Rectangle { SystemPalette { id: myPalette; colorGroup: SystemPalette.Active } width: 640; height: 480 color: myPalette.window Text { anchors.fill: parent text: "Hello!"; color: myPalette.windowText } }
参见 QPalette.
属性
The alternate base color of the current color group.
The base color of the current color group.
The button color of the current color group.
The button text foreground color of the current color group.
The color group of the palette. This can be one of:
- SystemPalette.Active (default)
- SystemPalette.Inactive
- SystemPalette.Disabled
The dark color of the current color group.
The highlight color of the current color group.
The highlighted text color of the current color group.
The light color of the current color group.
The mid color of the current color group.
The midlight color of the current color group.
The shadow color of the current color group.
The text color of the current color group.
The window (general background) color of the current color group.
The window text (general foreground) color of the current color group.