如何从UserControl内关闭对话窗口

时间:2013-07-24 12:22:29

标签: .net xaml user-controls

我有一个UserControl,它有一个取消和确定按钮。像例如wpf扩展工具包中的Wizard控件。

当用户在UserControl中单击“取消”或“确定”时,如何使用此控件关闭窗口?

我无法在OnOk处理程序中设置DialogResult = true,因为我的控件不是窗口。我是否必须上可视树才能找到窗口,还是有更好的解决方案?

控件:

<UserControl x:Class="WizardTest.WizardControl"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
<DockPanel>
    <UniformGrid DockPanel.Dock="Bottom" Columns="2">
        <Button Click="OnCancel">Cancel</Button>
        <Button Click="OnOk">Finish</Button>
    </UniformGrid>
</DockPanel>

1 个答案:

答案 0 :(得分:1)

您需要获得有效的Window

var w = Application.Current.Windows.OfType<Window>().SingleOrDefault(x => x.IsActive);
if (w == null) { return; }

w.Close();