我必须使用二维数组创建一个类似于 bool 类型的数据网格的矩阵。我有一组布尔字符串,需要为数据网格中的每个单元格进行评估,如下所示
例如
单元格[0,0] = ((server1 || server 2) && server 3)
单元格[0,1] = ((server1 && server 3) && server 4)
单元格[1,0] = ((server3 && server 2) || server 4)
服务器 N 的值是 Running 或 Stopped,它是从数据库中获取的。
如何创建 2D 矩阵数据网格以及如何评估布尔字符串,以便每个数据网格单元格的最终结果为 TRUE 或 FALSE。
我查看了此链接2D array for string并以此为例,但我不知道应该在哪里调用这些评估字符串。我必须将它们存储在 XML 文件中然后调用它们还是有任何其他方式来调用它们..
我尝试过的:
public MatrixPage()
{
InitializeComponent();
bool[,] matrixcell = new bool[10, 22];
matrixcell[0, 0] = // should I place the Evaluation string here;
matrixcell[0, 1] = ;
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 22; j++)
{
matrixcell[i, j] = // or Should I call here the evaluation boolean string for each iteration respective to the row/column from a file like XML or a any other file ??
}
}
var datsource = (from i in Enumerable.Range(0, matrixcell.GetLength(0))
select new clsdatasource(matrixcell[i, 0], matrixcell[i, 1], matrixcell[i,3])).ToList();
this.dg1.ItemsSource = datsource;
}
public class clsdatasource
{
public bool str1 { get; set; }
public bool str2 { get; set; }
public bool str3 { get; set; }
public clsdatasource(bool s1, bool s2,bool s3)
{
this.str1 = s1;
this.str2 = s2;
this.str3 = s3;
}
}
XAML
<Grid>
<DataGrid x:Name="dg1" CanUserAddRows="False" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Header="System1" Binding="{Binding str1}"/>
<DataGridTextColumn Header="System2" Binding="{Binding str2}"/>
<DataGridTextColumn Header="System3" Binding="{Binding str3}"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
请帮助..如果问题不清楚,请发表评论,我会尽量解释得更清楚