0

我在 Form1 中有一个 listView1,在 Form2 中有一个将元素添加到 Form1 的 listView1 的方法。我收到 listView1 不存在的错误。我怎样才能消除这个错误。我的代码是

表格2:

    public static string s;
    public void button1_Click(object sender, EventArgs e)
    {
        s = textBox1.Text;
        ListViewItem lvi = new ListViewItem(DodajWindow.s);
        listView1.Items.Add(lvi);
        this.Close();
    }
4

1 回答 1

1

请使用此示例代码,使用 2 种表格,

Form1 代码

public delegate void ListViewAddDelegate(string text);

namespace WindowsFormsApplication2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        public void AddItem(string item)
        {
            listView1.Items.Add(item);
        }

        private void button1_Click(object sender, EventArgs e)
        {
            ListViewAddDelegate Del = new ListViewAddDelegate(AddItem);
            Form2 ob = new Form2(Del);
            ob.Show();
        }
    }


}

Form2 的代码

namespace WindowsFormsApplication2
{
    public partial class Form2 : Form
    {
        public ListViewAddDelegate deleg;
        public Form2()
        {
            InitializeComponent();
        }
        public Form2(ListViewAddDelegate delegObj)
        {
            this.deleg = delegObj;
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (!textBox1.Text.Equals(""))
            {
                deleg(textBox1.Text);
            }
            else
            {
                MessageBox.Show("Text can not be emopty");
            }

        }

        private void Form2_Load(object sender, EventArgs e)
        {

        }
    }
}
于 2013-05-03T17:03:39.947 回答