M
mauricis
Hello.
I have a WIN32 application with a very large number of dynamically
created controls.
Up to now I've been positioning them using:
Control.Location = new Point(X,Y)
but I've been wondering wether using:
Control.Top = Y;
Control.Left = X;
wouldn't be less "expensive" in terms of object creation/garbage
collection etc.
Do any of you know what the best option is?
Thank you very much, in advance, for your kind reply.
I have a WIN32 application with a very large number of dynamically
created controls.
Up to now I've been positioning them using:
Control.Location = new Point(X,Y)
but I've been wondering wether using:
Control.Top = Y;
Control.Left = X;
wouldn't be less "expensive" in terms of object creation/garbage
collection etc.
Do any of you know what the best option is?
Thank you very much, in advance, for your kind reply.