我正在尝试创建一个动态表。我尝试使用行定义。我有一个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页面上的表?
答案 0 :(得分:0)
foreach (XElement nod in resultElements.Elements(@"studentPunishmentsTable"))
{
listb.Items.Add(penalty+Environment.NewLine+ issueDate + semesterDesc);
Grid.SetColumn(listb, colum);
Grid.SetRow(listb, row); row = row + 1;
}
此代码动态制作列表..