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