QQuickStyle 类允许配置应用程序样式。 更多...
头: | #include <QQuickStyle> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS QuickControls2)
target_link_libraries(mytarget PRIVATE Qt6::QuickControls2) |
qmake: | QT += quickcontrols2 |
QString | name () |
void | setFallbackStyle (const QString & style ) |
void | setStyle (const QString & style ) |
QQuickStyle provides API for querying and configuring the application styles of Qt Quick Controls.
#include <QGuiApplication> #include <QQmlApplicationEngine> #include <QQuickStyle> int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QQuickStyle::setStyle("Material"); QQmlApplicationEngine engine; engine.load(QUrl("qrc:/main.qml")); return app.exec(); }
注意: The style must be configured before loading QML that imports Qt Quick Controls. It is not possible to change the style after the QML types have been registered.
注意: QQuickStyle is not supported when using compile-time style selection .
To create your own custom style, see 创建自定义样式 . Custom styles do not need to implement all controls. By default, the styling system uses the Basic style as a fallback for controls that a custom style does not provide. It is possible to specify a different fallback style to customize or extend one of the built-in styles.
QQuickStyle::setStyle("MyStyle"); QQuickStyle::setFallbackStyle("Material");
另请参阅 风格化 Qt Quick Controls .
[static]
QString
QQuickStyle::
name
()
Returns the name of the application style.
注意:
The application style can be specified by passing a
-style
command line argument. Therefore
name()
may not return a fully resolved value if called before constructing a
QGuiApplication
.
[static]
void
QQuickStyle::
setFallbackStyle
(const
QString
&
style
)
Sets the application fallback style to style .
注意: The fallback style must be the name of one of the built-in Qt Quick Controls styles, e.g. "Material".
注意: The style must be configured before loading QML that imports Qt Quick Controls. It is not possible to change the style after the QML types have been registered.
The fallback style can be also specified by setting the
QT_QUICK_CONTROLS_FALLBACK_STYLE
环境变量
.
另请参阅 setStyle () 和 在 Qt Quick Controls 中使用风格 .
[static]
void
QQuickStyle::
setStyle
(const
QString
&
style
)
把应用程序样式设为 style .
注意: The style must be configured before loading QML that imports Qt Quick Controls. It is not possible to change the style after the QML types have been registered.
另请参阅 setFallbackStyle () 和 在 Qt Quick Controls 中使用风格 .