Dialog boxes that can minimize vertically

  • Thread starter Thread starter JP
  • Start date Start date
J

JP

Hi,
Does dialog boxes that can minimize vertically exist in C#.NET? I have seen
these boxes in e.g. paint shop pro and many linux user interfaces.

Could anyone help?

-jp
 
JP said:
Hi,
Does dialog boxes that can minimize vertically exist in C#.NET? I have seen
these boxes in e.g. paint shop pro and many linux user interfaces.

Could anyone help?

-jp

Hi,

No, they don't exist. Do it yourself then: test upon mouse events and
set the dialog's height.

Greetings,
Konrad -
 
Hi,

You will see a lot of functionality in programs that are not "standard";
you can do all of them from .NET, but you will need to interact with the
windows API. if you find a piece of code that create the effect you are
looking for in C post the code here and somebody will help you P/Invoke
them.


Cheers,
 
Back
Top