我有 listBox1 但是当我在 buttonClick 内使用 listBox1 时,我可以访问但在 buttonClick 之外我无法访问。我在哪里做错了?谢谢
namespace design
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button4_Click(object sender, EventArgs e)
{
listBox1.Items.Add(button1.Text);// I can access listBox1 here...
}
listBox1.//I can't access listBox1 here....
}
}