当扩展列表中的字典项时,我需要在字典中显示每个数据表(值)。字典项的键应该是扩展器头。视图模型正确填充数据,但UI上不显示任何内容。如何获取要在UI上显示的数据表列表 到目前为止,这就是我所拥有的:
<!-- Data grid template -->
<DataTemplate x:Key="ValuesTemplate">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Text="data grid header text" Margin="20,0,0,0" Grid.Row="2"/>
<DataGrid ItemsSource="{Binding Value[0]}"/>
</Grid>
</DataTemplate>
<!-- List of data tables -->
<ItemsControl ItemsSource="{Binding myDictionary}" VirtualizingStackPanel.IsVirtualizing="True">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Expander IsExpanded="True" Margin="0,0,0,10">
<Expander.Header>
<TextBlock Text="{Binding Key}" Margin="0,0,20,0" VerticalAlignment="Top"/>
</Expander.Header>
<ContentControl Content="{Binding}" ContentTemplate="{StaticResource ValuesTemplate}" ScrollViewer.CanContentScroll="True" Margin="20,0,0,0"/>
</Expander>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
答案 0 :(得分:0)
在WPF中,ItemsControl.ItemsSource
可以绑定到任何实现IEnumerable
的类型。那么,Dictionary<TKey, TValue>
如何用IEnumerable
表示?它是IEnumerable<KeyValuePair<TKey, TValue>>
。
因此,您可以忽略这样一个事实:您有一个字典,而是将其视为KeyValuePair<TKey, TValue>
个对象的枚举。
现在,您实现的主要部分主要是正确。您有ItemsControl
,已正确绑定,并且您正在为每个项目应用DataTemplate
。但是,请记住每个项目都是KeyValuePair
。因此,TextBlock.Text
属性正确绑定到键属性,但内容绑定到项目(KeyValuePair<TKey, TValue
)本身。这可能是故意的,但我的猜测是你可能希望将ContentControl绑定到 Value 属性。
第二部分是您要对原始ContentTemplate
中的每个Content
应用DataTemplate
。我看到至少有一个,也许是两个潜在的错误:
ValuesTemplate
似乎在假设内容属于DataTable
类型的情况下工作,而实际上它是KeyValuePair<string, DataTable>
的类型。在这种情况下,我会将Content
绑定到值属性。ValuesTempalte
似乎也将DataGrid.ItemsSource
绑定到Values[0]
。我的假设是,再次,您认为您的内容是DataTable
的类型,如果不是,即使是这种情况,为什么要将ItemsSource
绑定到DataTable
中的第一行{1}}?你的DataTable
是否由行组成,每行都是序列本身?我猜你只想做<DataGrid ItemsSource="{Binding}" />
。TL; DR;
<!-- Data grid template -->
<DataTemplate x:Key="ValuesTemplate">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Text="data grid header text" Margin="20,0,0,0" Grid.Row="2" />
<DataGrid ItemsSource="{Binding}" />
</Grid>
</DataTemplate>
<!-- List of data tables -->
<ItemsControl ItemsSource="{Binding MyDictionary}" VirtualizingStackPanel.IsVirtualizing="True">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Expander IsExpanded="True" Margin="0,0,0,10">
<Expander.Header>
<TextBlock Text="{Binding Key}" Margin="0,0,20,0" VerticalAlignment="Top" />
</Expander.Header>
<ContentControl Content="{Binding Value}" ContentTemplate="{StaticResource ValuesTemplate}" ScrollViewer.CanContentScroll="True" Margin="20,0,0,0" />
</Expander>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>