I have a piece of code that goes something like this:
[DefaultValue(false)]
public bool Property
{
set
{
blah = value;
someControl.Vi
The [DefaultValue] attribute is only a hint to the designer and the serializer. It is completely up to you to ensure that the default value you promised in the attribute is in fact the value of the property. The property setter doesn't get called in your case because the serializer detected that the current value of the property equals the default value and can thus omit the property assignment. It is an optimization, it makes InitializeComponent() smaller and faster.
You ensure this simply by initializing the property value in your constructor. Beware that a control's Visible property defaults to true.