In System.Windows.Forms.Button there is a property DialogResult, where is this property in the System.Windows.Controls.Button (WPF)?
Where is Button.DialogResult in WPF?
18.7k Views Asked by Shimmy Weitzhandler At
4
There are 4 best solutions below
0

There is no Button.DialogResult
in WPF. You just have to set the DialogResult
of the Window
to true or false :
private void buttonOK_Click(object sender, RoutedEventArgs e)
{
this.DialogResult = true;
}
There is no built-in Button.DialogResult, but you can create your own (if you like) using a simple attached property:
This will allow you to write:
and get behavior equivalent to WinForms (clicking on the button causes the dialog to close and return the specified result)