I learnt about DesignMode here How to refresh a winform custom control at design time after changing a property
But when in the constructor of my custom control I use it, it never returns true so when I drag and drop my custom control it always show max = 200 so what's wrong?
if (this.DesignMode)
{
this.Min = 0;
this.Max = 100;
}
else
{
this.Min = 0;
this.Max = 200;
}
this.LabMin.Text = this.Min.ToString();
this.LabMax.Text = this.Max.ToString();