If I have a propertygrid with the following code:
This code gives me a property called Title that allows me to enter any text into. The problem I am having is that I don't know how to query (know) what the user has entered.
Does anyone have any idea how I can to this in vb.net?
Cheers
Simon
Code:
<CategoryAttribute("Application"), _
Browsable(True), _
[ReadOnly](False), _
BindableAttribute(False), _
DefaultValueAttribute(""), _
DesignOnly(False), _
DescriptionAttribute("Enter Title for the application")> _
Public Property Title() As String
Get
Return _Title
End Get
Set(ByVal Value As String)
_Title = Value
End Set
End Property
This code gives me a property called Title that allows me to enter any text into. The problem I am having is that I don't know how to query (know) what the user has entered.
Does anyone have any idea how I can to this in vb.net?
Cheers
Simon