-2
我正在嘗試製作一個動態表格。我嘗試使用行定義。我有一個xml表,我想把值從動態表中。爲wp7製作一個動態表格
這裏是我的代碼:
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頁面上讀取數據線到表?
有什麼問題嗎?只要告訴我們你想做什麼並顯示代碼片段並不容易就能幫上忙。見http://tinyurl.com/so-hints –
你得到的錯誤是? –
什麼時候回跑什麼都沒有 –