Where is Button.DialogResult in WPF?

前端 未结 4 427
情深已故
情深已故 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条回答
  •  隐瞒了意图╮
    2021-01-01 17:40

    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;
    }
    

提交回复
热议问题