Stylus.GetIsPressAndHoldEnabled(DependencyObject) 方法

定义

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

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

参数

element
DependencyObject

要确定是否为其启用了按住的 UIElementContentElement

返回

true 如果指定的元素已启用长按,则为 ;否则为 false

属性

示例

以下示例演示如何在 上 Slider启用长按。 此示例假定有一个名为 SliderhorizontalSlider1

if (!Stylus.GetIsPressAndHoldEnabled(horizontalSlider1))
{
    Stylus.SetIsPressAndHoldEnabled(horizontalSlider1, true);
}
If Not Stylus.GetIsPressAndHoldEnabled(horizontalSlider1) Then
    Stylus.SetIsPressAndHoldEnabled(horizontalSlider1, True)
End If

适用于