如何从form2控制位于form1中的listview来刷新它

时间:2013-07-17 23:12:59

标签: c# vb.net forms

我想刷新位于form1的listview1。我创建的代码触发公共虚空以刷新它或使其成为listview1.visible = false;除了messagebox.show("test");

之外什么都不起作用

如何让它发挥作用?

public void RefeshListView()
   {

       this.listView1.BeginUpdate();

       MessageBox.Show("s");//this shows! only:\ !?!?!?
       listView1.Visible = false;
       listView1.Height = 222;
       listView1.EndUpdate();
       listView2.Clear();

   }

2 个答案:

答案 0 :(得分:0)

也许需要刷新。

public void RefeshListView()
{

   this.listView1.BeginUpdate();

   MessageBox.Show("s");//this shows! only:\ !?!?!?
   listView1.Visible = false;
   listView1.Height = 222;
   listView1.EndUpdate();
   listView2.Clear();
   listView2.refresh();
}

答案 1 :(得分:0)

我有点不清楚你要做什么,但从你的标题来看,你觉得你想影响ListView Form2中的Form1。我假设Form2是从Form1创建的。在您的情况下,您可以通过两种方式来实现此目的,第一种方法是创建自定义构造函数并将表单实例传递给它或在显示表单时分配所有权。第二种方法是在Form2上创建一个自定义事件,并在Form1中订阅它。

第一种方法:

当您使用frm2.Show(this);时显示Form2时,在Form1中

在Form2中,如果要调用刷新方法,请使用((Form1)Parent).RefreshListView();

或为Form2

创建自定义构造函数

<强> Form1中

public partial class Form1 : Form
{
    Form2 frm2;
    public Form1()
    {
        InitializeComponent();
        frm2 = new Form2(this);
        frm2.Show();
    }

    void frm2_RefreshList(object sender, EventArgs e)
    {
        RefreshListView();
    }

    public void RefreshListView()
    {

        this.listView1.BeginUpdate();

        MessageBox.Show("s");//this shows! only:\ !?!?!?
        listView1.Visible = false;
        listView1.Height = 222;
        listView1.EndUpdate();
        listView1.Clear();

    }
}

<强>窗体2

public partial class Form2 : Form
{
    Form1 frm1;
    public Form2()
    {
        InitializeComponent();
    }
    public Form2( Form frm)
    {
        InitializeComponent();
        frm1 = (Form1)frm;
    }
    private void button1_Click(object sender, EventArgs e)
    {
        frm1.RefreshListView();
    }
}

第二种方法:

<强> Form1中

public partial class Form1 : Form
{
    Form2 frm2;
    public Form1()
    {
        InitializeComponent();
        frm2 = new Form2();
        frm2.RefreshList += new EventHandler(frm2_RefreshList);
        frm2.Show();
    }

    void frm2_RefreshList(object sender, EventArgs e)
    {
        RefreshListView();
    }

    public void RefreshListView()
    {

        this.listView1.BeginUpdate();

        MessageBox.Show("s");//this shows! only:\ !?!?!?
        listView1.Visible = false;
        listView1.Height = 222;
        listView1.EndUpdate();
        listView1.Clear();

    }
}

<强>窗体2

public partial class Form2 : Form
{
    public event EventHandler RefreshList;

    public Form2()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        RefreshList(this, EventArgs.Empty);
    }
}