私は listBox1 を持っていますが、その listBox1 を buttonClick 内で使用しているときはアクセスできますが、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....
}
}