dutts / wpfmdi

A library to add the traditional Windows Forms Multiple Document Interface (MDI) features to WPF. The aim is to resemble the original as much as possible.
Apache License 2.0
66 stars 32 forks source link

Maximize Child exceed Container height #3

Open ricardoamm opened 6 years ago

ricardoamm commented 6 years ago

When we maximize the Child windows, they exceed Container height, and the Child bottom is hided.

saravana128 commented 5 years ago

Can anyone provide temporary/permanent solution for this ?

alrhr commented 2 years ago

In file MdiContainer.cs in method MdiContainer_SizeChanged change line

mdiChildHeight = ActualHeight;

to

mdiChildHeight = InnerHeight;