I'm using VS 2010.
Is there a way to make a line separator in C# Windows Forms? I sometimes use default background color and total white background.
Both of this methods I found does not work for me.
label2.AutoSize = false;
label2.Height = 2;
label2.BorderStyle = BorderStyle.Fixed3D;
or
label2.MaximumSize = new Size(100, 0);
label2.AutoSize = true;