我正在尝试制作一个动态表。我尝试使用行定义。我有一个 xml 表,我想将值放入动态表中。
这是我的代码:
Grid g = new Grid();
XElement resultElements = XElement.Parse(e.Result);
ListBox listBox2 = sender as ListBox;
// g.RowDefinitions.Add(rr);
int di = -1;
foreach (XElement nod in resultElements.Elements(@"studentPunishmentsTable"))
{
di++;
RowDefinition rr = new RowDefinition();
TextBlock u = new TextBlock();
penalty = nod.Element("penalty").Value;
u.Text = penalty;
g.RowDefinitions.Add(rr);
Grid.SetRow(u,di);
g.Children.Add(u);
}
如何使动态表从 webservice 表中逐行读取数据到 wp7 页面上的表中?