ListViewItemPresenter.CheckSelectingBrush 属性

定义

获取或设置使用轻扫交互选择项目时,用于在项目上呈现检查标记的画笔。 对于Windows 10应用,将忽略此属性。

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

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

属性值

使用轻扫交互选择项目时,用于在项目上呈现检查标记的画笔。

注解

有关 XAML 语法的说明

显示的 XAML 用法用于引用主题资源。 这是通常定义演示者的 Brush 值的方式,以便在主题更改时更改这些值,并且可能使 Brush 值可由不同的模板共享。 使用直接引用 Brush 值的 XAML 语法是可能的,但不太常见。 有关 Brush 的直接 XAML 用法示例,请参阅 Brush 类主题中的 XAML 部分。

如果要将此属性设置为自定义 ListViewItemPresenter 上的属性,请在显示的 XAML 用法中替换自定义类的前缀名称。

适用于

另请参阅