在label.text中更改一个单词颜色

时间:2012-04-19 17:32:50

标签: vb.net winforms

Windows窗体.net 4.0 vb应用程序。这是一个小小的事情,但我试图只改变label.text中一个单词的颜色。但它没有发生,我有强烈的感觉,要实现它将比它的价值更广泛......我试图使用的一小部分是......我只是错过了一个关键细节或是这真的是一种负担,而不是它的价值。

    Dim _changeLabel1 As String = " Note Fields Marked in "
    Dim _changeLabel2 As String = " are Required"
    Dim _attrib As New Label
    With _attrib
        .ForeColor = Color.Red
        .Text = "RED"
    End With
    _notificationLabel1.Text = _changeLabel1 + " " + _attrib.Text + " " + _changeLabel2

1 个答案:

答案 0 :(得分:3)

不幸的是,Winform标签不支持此功能。

您可以使用多个标签,其中一个标签为RED文字的红色。

这是关于此问题的related question