0

我的项目有 2 个表格,喜欢 5 个课程。我想要做的是调用一个在类中的 Form 上定义的方法,所以当我在我的类上调用它时它会运行。我想过在我的班级中创建我的表单实例,但这只会创建一个“新表单”,而且毫无意义。我的另一个选择是使我的表单成为静态表单,但我不知道该怎么做。谢谢您的帮助!

编辑

这是在我的表单上定义的方法:

        public void fillMatrix(char[,] currentMatrix, int rows, int columns)
    {
        for (int i = 0; i < rows; i++)
        {
            for (int j = 0; j < columns; j++)
            {
                string route = GameInstance.vexedGame.imgToShow(currentMatrix[i, j]);
                DataGridVexed[j, i].Value = Bitmap.FromFile(route);
            }
        }
    }
4

1 回答 1

2

非常基本的示例,如果我理解了您的原始要求:

public class MyForm : Form
{
    public A a = null;
    public MyForm ()
    {
        A = new A(this); // pass an instance of the MyForm to the class
    }

    public void WowMethod(){
       ... something amazing ...
    }
}

public class A
{
   public MyForm associatedForm = null;

   public A( MyForm f ){
      associatedForm = f;
   }

   public void CallWowMethod()
   {
      associatedForm.WowMethod();
   }
}
于 2013-04-30T13:08:42.537 回答