P
patrick.lioi
Label label = new Label();
label.Width = 1;
label.AutoSize = true;
label.Text = "A long string, requiring a width larger than 1.";
//At this point, Width is still 1.
What am I missing? Shouldn't AutoSize adjust the "Size"
"Auto"matically to fit the string?
label.Width = 1;
label.AutoSize = true;
label.Text = "A long string, requiring a width larger than 1.";
//At this point, Width is still 1.
What am I missing? Shouldn't AutoSize adjust the "Size"
"Auto"matically to fit the string?