添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
爽快的冰棍  ·  MySQL中 ...·  3 月前    · 
沉稳的石榴  ·  Surface Hub (v1) ...·  6 月前    · 
发呆的煎鸡蛋  ·  长篇漫画更新 ...·  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