Hello,

I am writing an application in Visual Studio .NET, C#.
Application is set to maximize after start.
I set in Form properties MinimumSize to 800; 600.
Everything is OK - I can't resize application window
to be smaller than 800 x 600.
But, when I set screen resolution to 800 x 600, set
task bar to be always visible (and also has height of
a few heights of standard task bar height - that working
area of the desktop is maybe 800 x 500), application
window is smaller than 800 x 600 (which was set as
minimum). Application window fit working area of screen
(screen size minus area of always visible task bar) which
is smaller than minimum size set in Form properties.
When I click on Maximize Box, application window
gets bigger and fits all the screen size (some area of my
application's window is then under task bar) -- it is what
I want.
I tried to manually set form Height to 600 on Resize event,
but it did not help.
How to cause that application window is always not
smaller than 800 x 600 ?

Thanks in advance,

Robot