相关文章推荐
叛逆的消防车  ·  【VUE+TS】1.0 ...·  4 月前    · 
踢足球的黑框眼镜  ·  Laravel ...·  7 月前    · 
风流的手术刀  ·  记录Postgresql ...·  1 年前    · 

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}"/>  

Dependency Property Information

Coming soon: Throughout 2024 we will be phasing out GitHub Issues as the feedback mechanism for content and replacing it with a new feedback system. For more information see: https://aka.ms/ContentUserFeedback.

Submit and view feedback for

This product