Where is Button.DialogResult in WPF?
问题 In System.Windows.Forms.Button there is a property DialogResult, where is this property in the System.Windows.Controls.Button (WPF)? 回答1: There is no built-in Button.DialogResult, but you can create your own (if you like) using a simple attached property: public class ButtonHelper { // Boilerplate code to register attached property "bool? DialogResult" public static bool? GetDialogResult(DependencyObject obj) { return (bool?)obj.GetValue(DialogResultProperty); } public static void