我有一个定制风格的ComboBox工作正常.它放在usercontrol中并绑定到数据结构.我使用DisplayMemberPath只显示ComboBox TextBox中的一个元素. ComboBox样式取自MSDN并多次使用.所以这里没有显示.
原文链接:https://www.f2er.com/windows/364309.html<UserControl x:Class="wpf.projext1.MyComboBox" x:Name="MyControl" ... <ComboBox Style="{StaticResource ComboBoxStyle}" Text="{Binding ElementName=MyControl,Path=Text}" IsEditable="True" IsTextSearchEnabled="False" StaysOpenOnEdit="True" ItemsSource="{Binding ElementName=MyControl,Path=MyItemsSource}" DisplayMemberPath="Name" </ComboBox
System.Windows.Data Error: 25 : Both 'ContentTemplate' and 'ContentTemplateSelector' are set; 'ContentTemplateSelector' will be ignored. ComboBoxItem:'ComboBoxItem' (Name='')
如果我遗漏了
DisplayMemberPath="Name"