Hi Guys,
I'm trying to change the width of a label dynamically but I can't.
Here's what I'm trying to do; I wanna create a label, put some text in it, then increase the width of that label.
Label meaning = new Label();
meaning.Text = " to reduce in amount, degree, intensity, etc.";
//meaning.Width = meaning.Width + 50 This didn't work
//I couldn't change the Unit to Int
//So I tried this, but also didn't work
//double w = meaning.Width.Value;
//meaning.Width = w + 40;
Thanks
...
Go to the complete details ...