ComboBox.SelectionBoxItemTemplate Property

Definition

Gets the item template of the selection box content.

public:
 property System::Windows::DataTemplate ^ SelectionBoxItemTemplate { System::Windows::DataTemplate ^ get(); };
public System.Windows.DataTemplate SelectionBoxItemTemplate { get; }
member this.SelectionBoxItemTemplate : System.Windows.DataTemplate
Public ReadOnly Property SelectionBoxItemTemplate As DataTemplate

Property Value

An item template.

Examples

The following example binds the Content property of a ContentPresenter to the SelectionBoxItemTemplate property. The ContentPresenter is part of the ControlTemplate for the ComboBox.

For a complete sample, see Styling with ControlTemplates Sample.

<ContentPresenter x:Name="ContentSite"
                  IsHitTestVisible="False"
                  Content="{TemplateBinding SelectionBoxItem}"
                  ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
                  ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}"
                  Margin="3,3,23,3"
                  VerticalAlignment="Stretch"
                  HorizontalAlignment="Left">
</ContentPresenter>

Remarks

XAML Attribute Usage

<object property="{TemplateBinding SelectionBoxItemTemplate}"/>  

Dependency Property Information

Identifier field SelectionBoxItemTemplateProperty
Metadata properties set to true None

Applies to