本文介绍了如何在WPF中获取父窗口的高度和宽度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用ITabbedMDI界面将窗口设计与Windows窗体中的Mdi容器相同。因此,如果父窗口最大化,如何更改子窗口的高度和宽度并保持与父窗口相同。我已经将子窗口作为用户控件,谢谢。

I made window design same as Mdi container in windows form using ITabbedMDI interface. So how can I change height and width of child window and keep same as parent window if parent window is maximized. I had made child window as user control, Thanks.

推荐答案

var height = new Binding("ActualHeight") { Source = MdiContainer };
var width = new Binding("ActualWidth") {Source = MdiContainer};
child.SetBinding(FrameworkElement.WidthProperty, width);
child.SetBinding(FrameworkElement.HeightProperty, height);


这篇关于如何在WPF中获取父窗口的高度和宽度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-03 16:09
查看更多