UIElement.OnIsStylusDirectlyOverChanged 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当针对此元素引发未处理的 IsStylusDirectlyOverChanged 事件时调用。 实现此方法可为此事件添加类处理。
protected:
virtual void OnIsStylusDirectlyOverChanged(System::Windows::DependencyPropertyChangedEventArgs e);
protected virtual void OnIsStylusDirectlyOverChanged (System.Windows.DependencyPropertyChangedEventArgs e);
abstract member OnIsStylusDirectlyOverChanged : System.Windows.DependencyPropertyChangedEventArgs -> unit
override this.OnIsStylusDirectlyOverChanged : System.Windows.DependencyPropertyChangedEventArgs -> unit
Protected Overridable Sub OnIsStylusDirectlyOverChanged (e As DependencyPropertyChangedEventArgs)
参数
注解
当依赖属性的值更改其值时, IsStylusDirectlyOver 将引发此虚拟方法。 首先引发虚拟方法,并且可以根据需要操作事件数据。 然后,使用 IsStylusDirectlyOverChanged 同一事件数据实例引发该事件。 请注意,该事件不是路由事件。 因此,不能在类处理程序中将其标记为已处理。
此方法没有默认实现。 由于继承中的中间类可能实现此方法,因此建议在实现中调用基实现。 可以在特殊处理之前或之后调用 base,具体取决于你的要求。