我有一个我作为对话框打开的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;