Where is Button.DialogResult in WPF?

前端 未结 4 459
情深已故
情深已故 2021-01-01 17:08

In System.Windows.Forms.Button there is a property DialogResult, where is this property in the System.Windows.Controls.Button (WPF)?

4条回答
  •  旧时难觅i
    2021-01-01 17:42

    MessageBoxResult result = MessageBox.Show("","");
    
    if (result == MessageBoxResult.Yes)
    {
    // CODE IN HERE
    }
    else 
    {
    // CODE IN HERE
    }
    

提交回复
热议问题