ListViewItemPresenter.SelectedBorderThickness Property

Definition

Gets or sets the thickness of the border around an item that's selected. This property is ignored for a Windows 10 app.

public:
 property Thickness SelectedBorderThickness { Thickness get(); void set(Thickness value); };
Thickness SelectedBorderThickness();

void SelectedBorderThickness(Thickness value);
public Thickness SelectedBorderThickness { get; set; }
var thickness = listViewItemPresenter.selectedBorderThickness;
listViewItemPresenter.selectedBorderThickness = thickness;
Public Property SelectedBorderThickness As Thickness
<listViewItemPresenter SelectedBorderThickness="uniform"/>
- or -
<listViewItemPresenter SelectedBorderThickness="left&right,top&bottom"/>
- or -
<listViewItemPresenter SelectedBorderThickness="left,top,right,bottom"/>

Property Value

The thickness of the border around an item that's selected, as a Thickness value.

Applies to