您好,我在 WPF 中有组合框
<ComboBox Name="mcombo" SelectedValuePath="Key" >
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=dictionary}" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
我也有
Dictionary<string, string> dictionary = new Dictionary<string, string>();
dictionary.Add("val", "valvalval");
我忘记了什么?在组合框中,没有数据!