I have a TitleColor property declared in my usercontrol. I can't apply the DefaultValue attribute to my property however because it says the color value is not constant:
VB Code:
  1. <DefaultValue(Color.Beige)> _
  2.     Public Property TitleColor() As Color
  3.         Get
  4.  
  5.         End Get
  6.         Set(ByVal Value As Color)
  7.  
  8.         End Set
  9.     End Property

how do I get around this because I know it is possible. If you change a color value of a windows form then right click on the color in the properties window, there is a Reset option available... so there must be a way to set the default value, but how