How do I get the width of a control ?
If I create a new control like this:
Label lb = new Label();
lb.Text="text";
double w=lb.Width.Value;
w always becomes 0, How do I get the actual width?
Or how do I add 10 to the actual width?
(lb.Width+=10 does not work)