大家好。如果有不清楚的地方,请告诉
我有 dataGrid 和 TreeView。我已将数据库加载为实体数据模型和一些表。这些表之一“关系”应该显示给数据网格。但它的(关系表)列依赖于其他表,如系统、型号、功能和设备。在数据网格中应该有 4 列,其中包含这些系统、模型、功能和设备的名称。(应该是图片1)
问题在这一切如何显示。数据源不能很好地工作......见图 2。
<Grid DataContext="{StaticResource relationsViewSource}">
<DataGrid AutoGenerateColumns="True" Name="gridInventory" HorizontalContentAlignment="Right" Margin="255,12,12,128" ItemsSource="{Binding}" />
<StackPanel Height="391" HorizontalAlignment="Left" Margin="10,10,0,0" Name="stackPanel1" VerticalAlignment="Top" Width="239" DataContext="{StaticResource systemsViewSource}" >
<TreeView Height="391" Name="treeView1" Width="239" VerticalContentAlignment="Top" HorizontalAlignment="Left" VerticalAlignment="Top" ItemsSource="{Binding}" />
</StackPanel>
</Grid>
图片1:
图2: