ComboBox.SelectionBoxItemTemplate Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.