内容表

上一话题

QStyle

下一话题

QStyleHintReturn

QStyleFactory

QStyleFactory class creates QStyle 对象。 更多

Inheritance diagram of PySide2.QtWidgets.QStyleFactory

概要

静态函数

详细描述

QStyle class is an abstract base class that encapsulates the look and feel of a GUI. QStyleFactory 创建 QStyle object using the create() function and a key identifying the style. The styles are either built-in or dynamically loaded from a style plugin (see QStylePlugin ).

The valid keys can be retrieved using the keys() function. Typically they include “windows” and “fusion”. Depending on the platform, “windowsvista” and “macintosh” may be available. Note that keys are case insensitive.

另请参阅

QStyle

class QStyleFactory
static PySide2.QtWidgets.QStyleFactory. create ( arg__1 )
参数

arg__1 – unicode

返回类型

QStyle

创建和返回 QStyle object that matches the given key , or returns None if no matching style is found.

Both built-in styles and styles from style plugins are queried for a matching style.

注意

The keys used are case insensitive.

另请参阅

keys()

static PySide2.QtWidgets.QStyleFactory. keys ( )
返回类型

字符串列表

Returns the list of valid keys, i.e. the keys this factory can create styles for.

另请参阅

create()