Qt Quick (QML) 颜色声明
Qt Quick (QML) color declaration
我在 ListView
声明中有以下声明:
highlight: Rectangle { color: "lightsteelblue"; radius: 5 }
一切正常,但我只是想知道,词 lightsteelblue
声明在哪个文件中,所以我可以查看其他预定义的颜色?
documentation says it is normally specified as an SVG color name, and provides this reference page。我了解 QML 支持其中列出的不同关键字名称。
编辑:正如@dbrianj 所指出的(谢谢),您可以在qtbase/src/gui/painting/qcolor_p.cpp 文件中找到它们。
我在 ListView
声明中有以下声明:
highlight: Rectangle { color: "lightsteelblue"; radius: 5 }
一切正常,但我只是想知道,词 lightsteelblue
声明在哪个文件中,所以我可以查看其他预定义的颜色?
documentation says it is normally specified as an SVG color name, and provides this reference page。我了解 QML 支持其中列出的不同关键字名称。
编辑:正如@dbrianj 所指出的(谢谢),您可以在qtbase/src/gui/painting/qcolor_p.cpp 文件中找到它们。