2017-04-21 14 views

答えて

0

あなたはItemTemplateを定義することができます。

<ComboBox ItemsSource="{Binding Items}"> 
    <ComboBox.ItemTemplate> 
     <DataTemplate> 
      <TextBlock Text="{Binding YourDisplayProperty}" TextWrapping="Wrap" /> 
     </DataTemplate> 
    </ComboBox.ItemTemplate> 
</ComboBox> 
関連する問題