我有一个Xceed(Xceed.Wpf.Toolkit)子窗口,我在WPF窗口的Code Behind中创建,它正在按照我期望的方式工作。
private void CustomerNotesPopup(string text, string caption)
{
TextBlock tbCustomerNotes = new TextBlock()
{
Text = text,
Margin = new Thickness(10),
TextWrapping = TextWrapping.Wrap,
FontSize = 20
};
Button btnConfirm = new Button()
{
Width = 150,
FontWeight = FontWeights.Bold,
Height = 59,
Content = "Confirm",
FontSize = 22,
Background = Brushes.Black,
Foreground = Brushes.White,
BorderBrush = Brushes.Black
};
btnConfirm.Click += btn_Click;
StackPanel sp = new StackPanel()
{
Orientation = Orientation.Vertical,
Margin = new Thickness(5)
};
sp.Children.Add(tbCustomerNotes);
sp.Children.Add(btnConfirm);
Xceed.Wpf.Toolkit.ChildWindow pop = new Xceed.Wpf.Toolkit.ChildWindow()
{
Height = 550,
Width = 550,
IsModal = true,
Content = sp,
WindowStartupLocation = Xceed.Wpf.Toolkit.WindowStartupLocation.Center,
Caption = caption,
Name = "PopUpWindow"
};
cgcanvas.Children.Add(pop);
pop.Show();
}
现在我正在尝试连接btnConfirm.Click + = btn_Click;单击按钮时关闭弹出窗口的事件。我已经尝试了几种不同的方法来查找Xceed Child名称并将其关闭但是找不到该名称并在命令中关闭它。
我认为我很接近这一点,但到目前为止,我仍然无法弄清楚如何在代码中获取和关闭它。
private void btn_Click(object sender, RoutedEventArgs e)
{
//foreach (Xceed.Wpf.Toolkit.ChildWindow popwindow in Application.Current.Windows)
//{
// //if (window.Name == "PopUpWindow")
// //{
// // window.Close();
// popwindow.Close();
// //}
//}
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(cgcanvas); i++)
{
var nameCheck = VisualTreeHelper.GetChild(cgcanvas, i) as Xceed.Wpf.Toolkit.ChildWindow;
//if (nameCheck.Name == "PopUpWindow")
//{
// MessageBox.Show("Yes");
//}
}
}
答案 0 :(得分:0)
通过使用Bob在评论中提供的建议,我可以注册并找到Xceed弹出窗口的名称。我最终把代码块放在一个类文件中,所以毕竟不需要寄存器。但是,如果没有这个建议,我就不会达到这一点。
要完成任务,我使用Find all controls in WPF Window by type在父级上查找Xceed控件,然后按名称将其关闭。