2017-04-21 1 views

답변

0

당신은 ItemTemplate 정의 할 수 있습니다 :

<ComboBox ItemsSource="{Binding Items}"> 
    <ComboBox.ItemTemplate> 
     <DataTemplate> 
      <TextBlock Text="{Binding YourDisplayProperty}" TextWrapping="Wrap" /> 
     </DataTemplate> 
    </ComboBox.ItemTemplate> 
</ComboBox> 
관련 문제