Code:
Public Class AppSettings
Private _greetingText As String = "Hello World"
Public Property [COLOR=DarkRed]GreetingText[/COLOR]() As String
Get
Return _greetingText
End Get
Set(ByVal Value As String)
_greetingText = Value
End Set
End Property
End Class
This will create a property within the property grid and the text displayed within this property would be GreetingText, but what I want is this text to read Greeting Text. Can anyone help.
Cheers
Simon