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