Stylus.GetIsTapFeedbackEnabled(DependencyObject) 方法

定义

获取指定元素上 IsTapFeedbackEnabled 附加属性的值。

public:
 static bool GetIsTapFeedbackEnabled(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static bool GetIsTapFeedbackEnabled (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetIsTapFeedbackEnabled : System.Windows.DependencyObject -> bool
Public Shared Function GetIsTapFeedbackEnabled (element As DependencyObject) As Boolean

参数

element
DependencyObject

要确定是否为其启用了点击反馈的 UIElementContentElement

返回

如果指定元素启用了点击反馈,则为 true;否则为 false

属性

示例

以下示例演示如何确定是否在 上 Canvas启用点击反馈。

bool tapFeedbackEnabled = Stylus.GetIsTapFeedbackEnabled(canvas1);
Dim tapFeedbackEnabled As Boolean = Stylus.GetIsTapFeedbackEnabled(canvas1)

注解

在 Windows Vista 中,当用户点击控件时,会出现简短的动画。 默认情况下,在 上 InkCanvas禁用点击反馈。 它在所有其他控件上启用。

适用于