如何在c#中使用来自一个表单的方法在另一个表单中(或者一个类在另一个类中)



所以,我在Form2中有一个树视图。在一个按钮单击,在Form3代码执行插入文本框的文本(从Form3)到数据库中,在此发生后,我希望在Form2中的树视图更新自己与数据库中的这些值,这意味着我需要使用treeView1(从Form2)在我写的代码在Form3或写一个方法在Form2(我已经完成)在Form3中使用。

Form2中的方法:

    public static void LoadTree()
    {
        int j = 1;
        string var;
        con.Open();
        OleDbCommand populate = new OleDbCommand("SELECT Project_name FROM Edit_Nodes ORDER BY Location ASC", con);
        OleDbDataReader reader = populate.ExecuteReader();
        while (reader.Read())
        {
            var = "H" + j + " - " + reader["Project_name"] + "";
            treeView1.Nodes[j].Text = var;
            j++;
        }
        con.Close();
    }

问题:"错误5非静态字段、方法或属性需要对象引用" Tool.Form2。

格式代码:

   private void button1_Click(object sender, EventArgs e)
    {
       // more code here
      Form2.LoadTree();
    }

我的问题是如何解决这些错误,或....我如何直接使程序识别Form3中的treeView1(它属于Form2),所以我可以在那里再次编写代码。

首先,让它成为一个实例方法,而不是静态方法:

public void LoadTree()
{
    // implementation
}

static不工作的原因是因为它没有任何给定表单实例的上下文,所以它没有任何给定实例(如treeView1)上的控件的上下文。接下来,您需要Form3实例具有对特定Form2实例的引用。一种简单的方法是向Form3添加一个属性,并在其构造函数中要求引用。在Form3中:

private Form2 Form2Instance { get; set; }
public Form3(Form2 form2Instance)
{
    this.Form2Instance = form2Instance;
}
此时,无论何时需要创建Form3的实例,都需要为其提供Form2的实例。所以如果你在Form2中创建它那么你可以这样做:
var form3Instance = new Form3(this);
form3Instance.Show();

在这一点上,Form3的任何实例都引用了创建它的Form2的实例。所以Form3上的代码可以引用私有属性中的实例来调用方法:

private void button1_Click(object sender, EventArgs e)
{
    // more code here
    this.Form2Instance.LoadTree();
}

你的代码有很多问题,请看我的注释

  // Since you want to update treeView1 you should 
  // point out on which instance of Form1 the target treeView1 is.
  // That's why LoadTree() can't be static
  public void LoadTree() { // <- Not static!
    // Much better to use a local connection here
    //TODO: provide the right connection string here
    using(OleDbConnection con = new OleDbConnection(connectionString)) {
      con.Open();
      // wrap all local IDisposable into using(...) {...}
      using (OleDbCommand populate = new OleDbCommand(con)) {
        // Format out your SQL for it to be readble
        populate.CommandText = 
          "  select Project_Namen" + 
          "    from Edit_Nodesn" +
          "order by Location asc";
        // wrap all local IDisposable into using(...) {...}
        using (OleDbDataReader reader = populate.ExecuteReader()) {
          // When updating visual controls prevent them from constant re-painting
          // and annoying blinking
          treeView1.BeginUpdate();
          try {  
            // What is "j"? No-one knows; "loop" is more readable
            int loop = 1;
            while(reader.Read()) {
              // "var" is unreadable, "nodeText" is clear
              String nodeText = "H" + loop.ToString() + " - " + reader["Project_Name"];
              // Check ranges: what if SQL returns more recods than treeView1's nodes? 
              if (loop >= treeView1.Nodes.Count) 
                break;
              treeView1.Nodes[loop].Text = nodeText;
              loop += 1;
            }
          finally {
            treeView1.EndUpdate();
          }  
        }  
      }
    }

现在,是时候调用LoadTree();但是对于哪个 Form2实例?想象一下,您已经打开了五个 Form2实例,现在让我们为所有Form2实例调用LoadTree():

private void button1_Click(object sender, EventArgs e) {
  // Enumerating all open forms
  foreach (Form form in Application.OpenForms) {
    Form2 source = form as Form2;
    // If the open form is Form2, call LoadTree
    if (!Object.ReferenceEquals(null, source))
      source.LoadTree();
  }
}

看起来你在LoadTree()方法中操作的东西叫做'treeView1'。如果这是Form2的一部分,它必须是静态的,或者你必须从它的一个已经实例化的对象中调用这个方法。

  1. 设置treeView1为static
  2. Form2 = new Form2();form.TreeView ();

相关内容

  • 没有找到相关文章

最新更新