我在WPF 4.5中有以下代码:
private void Button_Click_2(object sender, RoutedEventArgs e)
{
SepararStockView SSV = new SepararStockView(StockIDSeparar)
{
Title = "Separar Stock",
ShowInTaskbar = false, // don't show the dialog on the taskbar
Topmost = true, // ensure we're Always On Top
ResizeMode = ResizeMode.NoResize, // remove excess caption bar buttons
Owner = Application.Current.MainWindow,
}; ;
}
我如何处理"关闭"儿童"窗口(' SSV')重新加载网格?
答案 0 :(得分:0)