我正在编写简单的"颜色选择器"应用。 我只使用QML
我想知道如何转换颜色#RRGGBB"表示可读名称......?
例如:我有一个矩形,我有一个文本,我想显示矩形所用的颜色名称。
Rectangle
{
id: rectangle
color: "green"
property alias myColor: rectangle.color
// Set the size of the visual rectangle.
// In this case the rectangle will have the same size as its parent
anchors.fill: parent
Text
{
id: colorname
anchors.centerIn: parent
text: rectangle.myColor
color: "White"
font.pointSize: 8
}
}
有什么想法吗?
感谢。