Binding data to ComboBox WPF

前端 未结 3 1138
情歌与酒
情歌与酒 2021-01-25 13:51

I am newbie to WPF, and needs help to bind data into the ComboBox. The xaml file contains the tag below.



        
3条回答
  •  失恋的感觉
    2021-01-25 13:58

    Instead of DataContext={Binding} you should have ItemsSource={Binding}.

    The data context for any frameworkelement in the visual tree is by default {Binding}.

      
    

    Also for the combobox to display text of the items correctly I suppose you need DisplayMemberPath too. I assumed the property from Inbox class that you need to display is Name. Please replace with your relevant property name.

提交回复
热议问题