これが私のコードです。何らかの理由でボタン2が起動せず、ボタン1が起動し、ボタン2のコードを1つに配置すると、そこで機能します。ボタン 1 と 2 の両方がクリックで動作するようにするための構文について、何が欠けていますか? 私は 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;
}
}
}
}