我的项目有 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);
}
}
}