当前位置:  开发笔记 > 编程语言 > 正文

WinForms AcceptButton无法正常工作?

如何解决《WinFormsAcceptButton无法正常工作?》经验,为你挑选了2个好方法。

好吧,这让我烦恼,我只是想不通有什么问题......

我有两种形式.第一个表单只有一个简单的按钮,它打开另一个作为对话框,如下所示:

using (Form2 f = new Form2())
{
    if (f.ShowDialog() != DialogResult.OK)
        MessageBox.Show("Not OK");
    else
        MessageBox.Show("OK");
}

第二个就是它Form2,上面有两个按钮.我所做的就是将表单AcceptButton设置为一个,将CancelButton设置为另一个.在我的脑海中,这是完成这项工作所需要的一切.但是当我运行它时,我点击打开Form2的按钮.我现在可以单击一个设置为CancelButton,然后我收到"Not OK"消息框.但当我点击一套作为AcceptButton时,没有任何反应?Form2的InitializeComponent代码如下所示:

private void InitializeComponent()
{
    this.button1 = new System.Windows.Forms.Button();
    this.button2 = new System.Windows.Forms.Button();
    this.SuspendLayout();
    // 
    // button1
    // 
    this.button1.Location = new System.Drawing.Point(211, 13);
    this.button1.Name = "button1";
    this.button1.Size = new System.Drawing.Size(75, 23);
    this.button1.TabIndex = 0;
    this.button1.Text = "button1";
    this.button1.UseVisualStyleBackColor = true;
    // 
    // button2
    // 
    this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
    this.button2.Location = new System.Drawing.Point(130, 13);
    this.button2.Name = "button2";
    this.button2.Size = new System.Drawing.Size(75, 23);
    this.button2.TabIndex = 1;
    this.button2.Text = "button2";
    this.button2.UseVisualStyleBackColor = true;
    // 
    // Form2
    // 
    this.AcceptButton = this.button1;
    this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    this.CancelButton = this.button2;
    this.ClientSize = new System.Drawing.Size(298, 59);
    this.Controls.Add(this.button2);
    this.Controls.Add(this.button1);
    this.Name = "Form2";
    this.Text = "Form2";
    this.Load += new System.EventHandler(this.Form2_Load);
    this.ResumeLayout(false);
}

我除了添加这两个按钮之外什么也没做,并设置了AcceptButton和CancelButton.为什么不起作用?



1> Martin Moser..:

仅设置AcceptButton/CancelButton是不够的.这只是告诉应该在Enter/ 上调用哪个按钮Esc.您必须在Button处理程序中设置DialogResult.


有点奇怪的是,设置CancelButton实际上将该按钮的DialogResult设置为Cancel,但AcceptButton对该按钮的操作不同.
对话框结果设置为取消,因为它是默认值

2> Samuel..:

尝试设置DialogResultbutton1

this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;


我比你接受的答案更喜欢你的答案,因为你确切地说明了需要做什么.(除了混淆button1与button2 :-)
推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有