No puedo especificar un color de Fondo como Predeterminado para un Componente (Label)

25/06/2005 - 18:15 por Daniel R. Rossnagel | Informe spam
Ejemplo
Private ColorFondo As System.Drawing.Color = Color.Transparent
<DefaultValue(GetType(System.Drawing.Color), ColorFondo)> _
Public Overrides Property backcolor() As System.Drawing.Color
Get
End Get
Set(ByVal Value As System.Drawing.Color)
End Set
End Property



Me dice que se Requiere una Exprecion constante en (ColorFondo), Alguna
Idea,
Desde ya gracias.
 

Leer las respuestas

#1 Eduardo A. Morcillo [MS MVP VB]
25/06/2005 - 23:52 | Informe spam
Coloca el color como un String:

<DefaultValue(GetType(System.Drawing.Color), "Red")>

Eduardo A. Morcillo [MS MVP VB]
http://www.mvps.org/emorcillo

Preguntas similares