Qt:从#RRGGBB"获取颜色名称表示

时间:2014-08-05 06:16:37

标签: qt

我正在编写简单的"颜色选择器"应用。 我只使用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
    }
}

有什么想法吗?

感谢。

0 个答案:

没有答案