0
DataGridTextColumn col = new DataGridTextColumn();
col.Header = "SMS_Message";
Binding bind = new Binding();
bind.Source = (I_Want_To_Bind_New_MSG_All_the_Time);
col.Binding = bind;
GridView.Columns.Add(col);
- 我動態創建的數據網格列,但現在想要把每一行不同的數據。
- 上面的代碼我想要在每一行上始終綁定新的消息,這是如何實現的。
有人可以回答嗎? – Jyo