-1
我試圖在單擊按鈕時得到響應。但是,當我按一下按鈕沒有任何反應......單擊按鈕時沒有任何反應(VS c#)
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace test
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public void button1_Click(Object sender, EventArgs e)
{
button1.Text = "hi";
MessageBox.Show("hi");
}
}
}
當我添加的按鈕VS沒有方法添加到腳本,所以林不知道,如果是的button1_Click正確的語法,它不給任何錯誤雖然。
雙擊。它會爲你創建方法 –
哦,好吧謝謝一堆! – Taegos
更重要的是,它會在按鈕上註冊事件處理程序(點擊按鈕後在'Form1.Designer.cs'中檢查生成的代碼) –