W
Will Chapman
What is the best way to allow for different
screen sizes on, say, the standard PocketPC
format and the square 240x240 screen size
of the Ipaq hw 6515?
The form I have in my app is too complex to
simply write code to scrunch up the screen
and resize controls.
On the surface it seems that the easiest option
would be to create forms for each screen size and
then write code that will choose the correct size at
runtime. That would suggest that, to avoid repetitive
code in both forms, I should create a custom control
that inherits from System.Windows.Form.Form and,
being new to C#, that constitutes a big leap in skill;
are there any walkthroughs available that cover
form inheritance? Or, indeed, is there a better way to
handle multiple screen sizes?
Thanks...
Will Chapman
screen sizes on, say, the standard PocketPC
format and the square 240x240 screen size
of the Ipaq hw 6515?
The form I have in my app is too complex to
simply write code to scrunch up the screen
and resize controls.
On the surface it seems that the easiest option
would be to create forms for each screen size and
then write code that will choose the correct size at
runtime. That would suggest that, to avoid repetitive
code in both forms, I should create a custom control
that inherits from System.Windows.Form.Form and,
being new to C#, that constitutes a big leap in skill;
are there any walkthroughs available that cover
form inheritance? Or, indeed, is there a better way to
handle multiple screen sizes?
Thanks...
Will Chapman