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