WPF - 在所有者窗口中关闭处理窗口

时间:2015-01-26 18:15:56

标签: c# wpf

我在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')重新加载网格?

1 个答案:

答案 0 :(得分:0)

  1. 在子窗口中创建一个事件。
  2. 在创建子窗口实例时,在主窗口中附加侦听器。
  3. 当关闭子窗口时,提升该事件以便可以在主窗口中收听。