如何将按钮绑定到Winforms的OK对话框结果



我有一个我作为对话框打开的Form。在 Form上,我有一个取消和a 正确按钮,当用户选择正确按钮时,我需要从表单中获取正面反馈。我将如何链接正确的按钮与OK对话框结果?

来自msdn button.dialogresult属性来了:

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

应用于您的情况,您只需将其分配给您的正确按钮:

correct_btn.DialogResult = DialogResult.OK;

相关内容

  • 没有找到相关文章

最新更新