Desktop Form - auto arrange windows/pages

0
0

I have a Web desktop style application and I’m trying to figure out how to give the user “Tile, Cascade” functionality so they can auto arrange the open forms like a Windows Desktop application allows you to do. Is there an easy way to do this or is this more for the MDI form style ?

  • You must to post comments
0
0

You can assign ContextMenu to the desktop and add the window-layout options.  The context menu shows up also when right clicking on the task bar.

To iterate all the windows, use: foreach (Form f in Application.OpenForms). You can query and change the Location, Size, WindowState.

/Luca

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.