I've tried implementing a user defined property for my user control class by including the code :
Private title As String = ""
<Category("Titles"),
Description("Title of the application")>
Public Property MyTitle() As String
Get
Return title
End Get
Set(value As String)
title = value
End Set
End Property
But the property Title still does not appear when looking at the [Design] layout and in the properties.
Am i missing something?