我需要使用UserControl调用的DialogBox。是否有可能调用DialogBox并将结果返回给UserControl?
private void Button_Click_1(object sender, RoutedEventArgs e) {
bool? result;
Dialog1 dlg = new Dialog1();
dlg.Owner = this;
dlg.ShowDialog();
//dlg.Show();
result = dlg.DialogResult;
}
假设此按钮单击事件位于wpf UserControl中。在这种情况下,我不能使用“dlg.Owner = this;”将结果返回给调用者。