是否有像
这样的东西MyGrid.row[1].col[1] = "mytext"
为了用数据填充网格?
答案 0 :(得分:3)
如果要使用代码在网格中定位控件:
var textBlock = new TextBlock { Text="mytext" };
Grid.SetColumn(textBlock, 1);
Grid.SetRow(textBlock, 1);
myGrid.Children.Add(textBlock);
答案 1 :(得分:0)
Windows Phone SDK中没有DataGrid,但有一个Grid控件可用于页面布局。由于您确实提到您的方案是数据驱动的,我建议使用ListBox和数据绑定。