2013-07-27 207 views
0

我知道我的數據表中有數據,但我沒有看到它在我的數據網格中。這是我的約束力。WPF datagrid綁定數據表

<DataGrid Grid.Row="1" Name="DataGrid4" AutoGenerateColumns="TRUE" CanUserAddRows="False" CanUserDeleteRows="False" CanUserReorderColumns="False" AlternatingRowBackground="LightBlue" ItemsSource="{Binding Path=thisData.thisFollowUp.thisP.pData.dataTable.DefaultView}"/> 

這是我的理解,當數據表數據發生變化時,我不需要通知WPF。任何想法我失蹤了?如果有必要,我會添加更多的代碼。

回答

0

如果您爲DataGrid設置了封閉容器的DataContext,則只需撥打ItemSource = {Binding}即可。在代碼後面加載數據後,您可以設置DataContextExamples