将项目从一个表单添加到另一个表单列表框

时间:2016-12-08 13:31:05

标签: c# listbox

我有一个代码。我在form2上公开了listbox修饰符,并从form4访问它以将项目添加为button.text。但我无法在form2上的列表框中获取该项目。有什么建议吗? 感谢

namespace WindowsFormsApplication35
{
    public partial class Form4 : Form
    {
        public Form4()
        {
            InitializeComponent();
            foreach(Control but in this.Controls)
            {
                if (but is Button)
                {
                    ((Button)but).Click += Form4_Click;
                }
            }
        }

        private void Form4_Click(object sender, EventArgs e)
        {
            Form2 form2 = new Form2();
            form2.listBox1.Items.Add(((Button)sender).Text);        
        }         
    }
}

0 个答案:

没有答案