Peace,
I'm trying to view the changed property of a costume control when i change it in the design mode.
i defined the property as followed:
[Bindable(true)]
[Category("Box")]
[DefaultValue("Sophia")]
[Description("The Item description displayed in the control")]
public string DBItem_Description
{
get
{
EnsureChildControls();
return ItemDesc.Text;
}
set
{
EnsureChildControls();
ItemDesc.Text = value;
}
}
but it seems to ignore the default value and allso even if i change the value in the design mode i get the same ignorance from the VStudio.
thanks,
lior