标签: c# wpf
我有一个问题,我做一个窗口应用程序,并在我的窗体窗体上使用一些Wpf用户控件我要关闭我的窗体当我关闭用户控件,取消按钮我怎么能实现它.....意味着我想要获得usercontrol的父级
答案 0 :(得分:8)
您使用Parent - 属性获得的UserControl的父级。您可以使用Window.GetWindow - 方法直接获取该窗口。
Parent
UserControl
Window.GetWindow
Window w=Window.GetWindow(this); if(null != w){ w.Close(); }