Hi
I am wondering what does "Bounds" do?
like you can do
label1.Bounds = new Rectangle(100,100,100,100);
I can't find any information on it(seems sometimes so hard to find information for windows mobile stuff).
Does bounds include "Size"?
Like would it be redundant to do this?
label1.Size = new Size(100, 100);
label1.Bounds = new Rectangle(100,100,100,100);
Thanks