如何使用winforms将按钮绑定到OK对话框结果

时间:2016-11-29 09:20:22

标签: c# winforms dialogresult

我有Form我已经打开了对话框。在Form我有取消正确的按钮,当用户选择正确<时,我需要从表单中获得正面反馈/ kbd>按钮。我如何将正确的按钮链接到OK对话框结果?

1 个答案:

答案 0 :(得分:1)

来自MSDN Button.DialogResult Property的答案是:

showCode

应用于您的案例,您只需将其分配给正确的按钮的属性:

private void InitializeMyButton()
{
    // Create and initialize a Button.
    Button button1 = new Button();

    // Set the button to return a value of OK when clicked.
    button1.DialogResult = DialogResult.OK;

    // Add the button to the form.
    Controls.Add(button1);
}