2016-06-25 66 views
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); 
  • 我動態創建的數據網格列,但現在想要把每一行不同的數據。
  • 上面的代碼我想要在每一行上始終綁定新的消息,這是如何實現的。
+0

有人可以回答嗎? – Jyo

回答

0

創建合適的class,其中的對象可以用作DataContext/ItemsSource

如果屬性類型或屬性數量發生更改,則使用Anyonymous Object

+0

謝謝您寶貴的重播..但我是編程新手,你想舉個例子嗎? – Jyo

相關問題