方式一、通过当前控件名获取父级窗体

Window targetWindow = Window.GetWindow(button);

方式二、通过当前控件获取父级窗体

Window parentWindow = Window.GetWindow(this);

04-26 18:49