HI
When I draw my layout using the designer, I use "absolute coordinates position" (as the designer does)
e.g. myLabet has coordinates, Left=15, Top=15, Width=330, Height=60
then I have to adapt to every device, so in the code I use % coords, so for example
I do this for every view (object) I have in my panel.
What am I doing wrong?
Is it the right way to design and put views on my screen?
Thank you
When I draw my layout using the designer, I use "absolute coordinates position" (as the designer does)
e.g. myLabet has coordinates, Left=15, Top=15, Width=330, Height=60
then I have to adapt to every device, so in the code I use % coords, so for example
coords in %:
MyLabel.SetLayout(5%x, 3%y, 90%x, 10%y)
I do this for every view (object) I have in my panel.
What am I doing wrong?
Is it the right way to design and put views on my screen?
Thank you