动态添加内容到tabpages

时间:2014-08-03 15:21:10

标签: c# winforms

尝试使用c#动态地将列表框和图片添加到tabcontrol中的动态创建的tabpages中。该表单有一个按钮,可以动态创建tabcontrol的tabpages,还可以添加内部列表框和其他一些内容。

问题是,当我第二次按下按钮时,它会删除上一个标签中的所有内容并将其添加到最后一个标签中。

    private void AddNewPr_Click(object sender, EventArgs e)
    {
        TabPage tab = new TabPage();
        ListBox list = new ListBox();
        ListBox list2 = new ListBox();
        PictureBox pictureBox = new PictureBox();
        PictureBox pictureBox2 = new PictureBox();
        tab.Name = "tabPage" + n;
        tab.Text = "Property " + n;
        tabControl1.Controls.Add(tab);
        list.Items.AddRange(new object[] {
                "Id",
                "Name"
        });
     //more list properties here///
     //other items here created/////

        tab.Controls.Add(list);
        tab.Controls.Add(list2);
        tab.Controls.Add(pictureBox);

        n++;
    }

我还声明了一个整数递增器,以便所有新内容都有自己的名称标识。 我遇到的另一个问题是我无法访问也是动态创建的pictureBox点击事件处理程序。

感谢您的帮助.. !!

1 个答案:

答案 0 :(得分:0)

要从类中的其他方法访问新创建的项(listlist2),您需要创建类级变量。例如,将您的样本扩展一点:

public class MyForm : Form
{
    //Class-level variables, accessible to all methods in the class
    private ListBox _list;  
    private ListBox _list2;

    private void AddNewPr_Click(object sender, EventArgs e)
    {
        TabPage tab = new TabPage();
        _list = new ListBox();
        _list2 = new ListBox();
        PictureBox picBox = new PictureBox();
        picBox.Click = picBox_Click;

        //More stuff here

        //Add the controls        
        tabControl1.Controls.Add(tab);
        tab.Controls.Add(list);
        tab.Controls.Add(list2);
        tab.Controls.Add(pictureBox);
    }

    private void picBox_Click(object sender, EventArgs e)
    {
        //_list and _list2 are in scope here because they are defined at the class-level
        _list.Items.AddRange(new object()["Id", "Name"]);
    }
}