我的 WPF 应用程序中有matrix
一种datagrid
,我想创建一个二维Array
来访问datagrid
. 如何使用 bool 类型的二维数组访问 datagridcells,因为我的结果将是 Boolean 类型。
对于这 10 x 10 行、列数组中的每个 [i][j],我必须查询
例如
[0][0] = result of one query
[0][1] = result of another query
编辑
我试过的
bool[,] cell = new bool[10, 10];
for (int i = 0; i < 10; i++)
{
for(int j= 0; j<10 ;j++)
{
cell[i,j] = (); // what to write here
}
}