Styling Qt Quick Controls 2

可用风格

Qt Quick Controls 2 comes with a selection of styles.

默认风格

The 默认风格 is a simple and light-weight all-round style that offers the maximum performance for Qt Quick Controls 2.

Fusion 风格

The Fusion 风格 is a platform-agnostic style that offers a desktop-oriented look'n'feel for Qt Quick Controls 2.

想象风格

The 想象风格 is based on image assets. The style comes with a default set of images which can easily be changed by providing a directory with images using a predefined naming convention.

材质风格

The 材质风格 offers an appealing design based on the Google 材质设计指导方针 , but requires more system resources than the Default style.

通用风格

The 通用风格 offers an appealing design based on the Microsoft 通用设计指导方针 , but requires more system resources than the Default style.

Using Styles in Qt Quick Controls 2

In order to run an application with a specific style, either configure the style using QQuickStyle in C++, pass a command line argument, or set an environment variable. Alternatively, the preferred style and style-specific attributes can be specified in a configuration file.

The priority of these approaches follows the order they are listed below, from highest to lowest. That is, using QQuickStyle to set the style will always take priority over using the command line argument, for example.

使用 QQuickStyle 在 C++

QQuickStyle provides C++ API for configuring a specific style. The following example runs a Qt Quick Controls 2 application with the Material style:

QQuickStyle::setStyle("Material");
					

See the detailed description of QQuickStyle 了解更多细节。

命令行自变量

Passing a -style command line argument is the convenient way to test different styles. It takes precedence over the other methods listed below. The following example runs a Qt Quick Controls 2 application with the Material style:

./app -style material
					

环境变量

设置 QT_QUICK_CONTROLS_STYLE environment variable can be used to set a system-wide style preference. It takes precedence over the configuration file mentioned below. The following example runs a Qt Quick Controls 2 application with the Universal style:

QT_QUICK_CONTROLS_STYLE=universal ./app
					

Supported Environment Variables in Qt Quick Controls 2 for the full list of supported environment variables.

配置文件

Qt Quick Controls 2 support a special configuration file, :/qtquickcontrols2.conf , that is built into an application's resources.

The configuration file can specify the preferred style (may be overridden by either of the methods described earlier) and certain style-specific attributes. The following example specifies that the preferred style is the Material style.

[Controls]
Style=Material
					

Qt Quick Controls 2 Configuration File 了解有关配置文件的更多细节。