This is my ComboBox:
<ComboBox Name="ApplicationList" MinWidth="200" Margin="4" >
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding ApplicationName}"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
If the combo box contains just strings I get type-down support for free. But how do I enable type-down support for complex objects?