I want to create a UI with Windows Forms that should scale with the
resolution. It's some sort of demonstration UI to be used on
presentations.
For example: my application is always maximized and lets say it
contains 4 big buttons (in 2 rows and 2 columns) that completely fill
the screen.
When it runs on a 800x600 screen it should fill all space. When it
runs on a 1600x1200 screen it should also fill all available space.
I have already used a tableLayoutPanel but this only scales the
controls, not the font.
Is the tableLayoutPanel the right tool for this job? And can it also
dynamically change the fontsize?