How to close parent windows using WPF User Control

情到浓时终转凉″ 提交于 2020-01-24 04:08:28

问题


Assume that I have two WPF windows: window_One and window_Two.

  • window_One has one button. Clicking this button opens window_Two.
  • window_Two contains a User Control.
    • This user control has one button that closes window_Two.

How can I achieve this scenario?


回答1:


Inside the custom control that you've created. You can access the parent window from within the button event click.

Either by using the visual tree:

var myWindow = (Window)VisualParent.GetSelfAndAncestors().FirstOrDefault(a => a is Window);
myWindow.Close();

or by simply:

var myWindow = Window.GetWindow(this);
myWindow.Close();

Of course, the other option would be to create a custom event that says "MyButtonClicked" and then have the window that hosts the UserControl to listen to this event and when the Event is fired, you close the current window.

Cheers!




回答2:


You can try EventAggregator to implement this event driven logic across different ViewModel.

http://www.codeproject.com/Articles/355473/Prism-EventAggregator-Sample




回答3:


We implemented this to close Window1 from Window2 getting opened, but it should work in any scenario to close any window from anywhere if you place these code parts in their appropriate areas:

Create a class that stores a Window object, and a function that will close it:

CloseWindow.cs

public static class CloseWindow
{
    public static Window WinObject;

    public static void CloseParent()
    {
        try
        {
            ((Window)WinObject).Close();
        }
        catch (Exception e)
        {
            string value = e.Message.ToString(); // do whatever with this
        }
    }
}

In the parent window (window you want to close - Window2, in this case?), in its onload event, set its Window object equal to CloseWindow.WinObject:

CloseWindow.WinObject = (Window)this;

Then, in the child's onload event (or, in the case of the OP, in Window2's User Control's button event), have it perform the CloseParent() function:

if (CloseWindow.WinObject != null)
    CloseWindow.CloseParent();


来源:https://stackoverflow.com/questions/32865659/how-to-close-parent-windows-using-wpf-user-control

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!