I'm creating a User control using .net and i have custom properties on this control. How can i make a link to the property(red square) visible with the description at the bottom of the property window of the control like in the picture below to acces it more easy(on the yellow square)

I've tried to use some System.ComponentModel Attributes to the property but no luck so far...
<System.ComponentModel.Description("Editar ListaColumnasCO")>
<System.ComponentModel.EditorBrowsable(True)>
<System.ComponentModel.ComVisible(True)>
<System.ComponentModel.SettingsBindable(True)>
Public Property ListaColumnasCo() As List(Of ColumnaCo)
Any ideas?
Here is a simple example to make Verbs [add a reference of System.Design]