ListViewItemPresenter.SelectedPointerOverBorderBrush Property

Definition

Gets or sets the brush used to render the border of an item that's selected and has the pointer over it. This property is ignored for a Windows 10 app.

public:
 property Brush ^ SelectedPointerOverBorderBrush { Brush ^ get(); void set(Brush ^ value); };
Brush SelectedPointerOverBorderBrush();

void SelectedPointerOverBorderBrush(Brush value);
public Brush SelectedPointerOverBorderBrush { get; set; }
var brush = listViewItemPresenter.selectedPointerOverBorderBrush;
listViewItemPresenter.selectedPointerOverBorderBrush = brush;
Public Property SelectedPointerOverBorderBrush As Brush
<ListViewItemPresenter SelectedPointerOverBorderBrush="themeResourceReference"/>

Property Value

The brush used to render the border of an item that's selected and has the pointer over it.

Remarks

Notes on XAML syntax

The XAML usage shown is for referencing a theme resource. This is how Brush values for a presenter are typically defined, so that the values can be changed when the theme changes, and potentially so that Brush values can be shared by different templates. It's possible but less common to use a XAML syntax that refers to a Brush value directly. For examples of direct XAML usages for a Brush, see the XAML section in the Brush class topic.

If you're setting this property as an attribute on a custom ListViewItemPresenter, substitute the prefixed name of your custom class in the XAML usage shown.

Applies to

See also