動的テーブルを作成しようとしています。行定義を使用してみました。動的テーブルに値を入れたい 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);
}
Webサービステーブルからwp7ページのテーブルにデータを1行ずつ読み取る動的テーブルを作成するにはどうすればよいですか?