about positioning controls

T

Tony Johansson

Hello!

It's not good to use absolute positions when designing web pages but then it
should not
be used when designing win forms.
I have never heard that you should avoid using absolute position when
designing win forms.


//Tony
 
J

Jeff Johnson

It's not good to use absolute positions when designing web pages but then
it should not be used when designing win forms.

??? Where did this statement come from? Are you quoting something?
I have never heard that you should avoid using absolute position when
designing win forms.

Nor have I. But it IS a good idea to implement resizing logic for your
controls.
 
T

Tony Johansson

Jeff Johnson said:
??? Where did this statement come from? Are you quoting something?


Nor have I. But it IS a good idea to implement resizing logic for your
controls.


I mean if I use absolute positioning and the client resize the browser it
might cause the control not to be visible in the screen.
So this problem must be the same if I use windows form.

//Tony
 
J

Jeff Johnson

I mean if I use absolute positioning and the client resize the browser it
might cause the control not to be visible in the screen.
So this problem must be the same if I use windows form.

Which is why I said it's a good idea to implement resizing logic. And,
barring that, at least allow the contents of the window to scroll so you can
still get to all the controls if the user makes the window really small and
you don't re-arrange things.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top