This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Download Microsoft Edge
More info about Internet Explorer and Microsoft Edge
public:
property System::Object ^ SelectionBoxItem { System::Object ^ get(); };
public object SelectionBoxItem { get; }
member this.SelectionBoxItem : obj
Public ReadOnly Property SelectionBoxItem As Object
Property Value
Examples
The following example binds the
Content
property of a
ContentPresenter
to the
SelectionBoxItem
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
The
ControlTemplate
of the
ComboBox
uses this property to show the selected item in the
ComboBox
. To get the selected item of the
ComboBox
outside of the
ControlTemplate
, use the
Selector.SelectedItem
property instead of this property.
XAML Attribute Usage
<object property="{TemplateBinding SelectionBoxItem}"/>