程序在c#中读取文件:按钮不工作

本文关键字:按钮 工作 文件 读取 程序 | 更新日期: 2023-09-27 18:02:57

这是我的代码,由于某种原因,按钮二不触发,按钮一,当我把代码从按钮二到一个它工作在那里。我错过了什么关于语法得到按钮一和二都工作在点击?我学习c#大约2周了,所以这对我来说都是新的,我不明白为什么这段代码不应该工作。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
    public partial class Form1 : Form
    {
        string filePath = null;
        public Form1()
        {
            InitializeComponent();
        }
        //Method to check database connection
        private void button1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("button1.Click was raised.");
        }
        //Method to select a file
        private void button2_Click(object sender, EventArgs e)
        {
            OpenFileDialog file = new OpenFileDialog();
            if (file.ShowDialog() == DialogResult.OK)
            {
                filePath = file.FileName;
            }
        }
    }
}

程序在c#中读取文件:按钮不工作

我假设事件处理程序(不再)被订阅。因此,请查看自动生成文件Form1.Designer.csForm1的部分类。一定有这样的地方:

this.button1.Click += new System.EventHandler(this.button1_Click);
// is this missing?
this.button2.Click += new System.EventHandler(this.button2_Click);

如何:订阅和取消订阅事件(c#编程指南)

确保button2被绑定

从设计器中选择按钮,然后转到属性窗口。点击闪电,确保点击事件绑定到button2_Click

另一种方法是右键单击InitializeComponent()并选择"转到定义"(将您带到Form1.designer.cs)并查找以下内容:

button2.OnClick += new EventHandler(button2_Click);

如果你已经确认它是绑定的,我们需要看更多的东西来确定问题。