Winforms + MDI children

Is there a way in WinForms to specify the initial start locations of MDI Child windows in a somewhat reasonable way?

I can apply a manual position or have its parent center, but none of these options really care about existing windows.

I would like to know if there is a built-in "smart layout" way, or if I need to implement this code myself.

As a side note, are there ways to automate tiled and cascading views?

+1


source to share


1 answer


For tiled and cascading, you want to use Form.LayoutMdi ().



If you need something more complex then you will need to write some code.

+4


source







All Articles