PointerRoutedEventArgs.IsGenerated 属性

定义

获取一个值,该值指示指针事件是由用户与对象直接交互发生的,还是由平台基于对应用程序 UI 的更改生成的。

public:
 property bool IsGenerated { bool get(); };
bool IsGenerated();
public bool IsGenerated { get; }
var boolean = pointerRoutedEventArgs.isGenerated;
Public ReadOnly Property IsGenerated As Boolean

属性值

Boolean

bool

如果事件是由平台生成的,则为 True;否则为 false。

Windows 要求

设备系列
Windows 10 Fall Creators Update (在 10.0.16299.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v5.0 中引入)

注解

平台生成指针事件的一些示例包括:

  • 平移惯性完成后,在控件上检测到指针
  • 当用户使用键盘滚动或翻页内容时,在控件上检测到指针
  • 在列表中添加或删除项,指针下的项会更改

适用于

另请参阅