0

こんにちは、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"); 

私は何を忘れますか?コンボボックスにデータがありません!

4

1 に答える 1