Pues por ejemplo para que salga, con el overrides lo hado así:
Código:
< _
Bindable(True), _
Category("Appearance"), _
DefaultValue(""), _
Description("Ruta de la imagen que cargará el botón como fondo") _
> _
Public Overrides Property imageurl() As String
Get
Return ImgBoton
End Get
Set(ByVal value As String)
value = ArreglarRutaImagen(value)
ImgBoton = value
End Set
End Property
Pero en general las propiedades las hago así:
Código:
< _
Bindable(True), _
Category("Appearance"), _
DefaultValue(""), _
Description("Especifica la ruta de imágen para la esquita superior izquierda") _
> _
Public Property ImagenEsquinaSupIzq() As String
Get
Return sImagenEsquinaSupIzq
End Get
Set(ByVal value As String)
sImagenEsquinaSupIzq = value
End Set
End Property