Stylus.GetIsPressAndHoldEnabled(DependencyObject) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定元素上 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
要确定是否为其启用了按住的 UIElement 或 ContentElement。
返回
true
如果指定的元素已启用长按,则为 ;否则为 false
。
- 属性
示例
以下示例演示如何在 上 Slider启用长按。 此示例假定有一个名为 Slider 的 horizontalSlider1
。
if (!Stylus.GetIsPressAndHoldEnabled(horizontalSlider1))
{
Stylus.SetIsPressAndHoldEnabled(horizontalSlider1, true);
}
If Not Stylus.GetIsPressAndHoldEnabled(horizontalSlider1) Then
Stylus.SetIsPressAndHoldEnabled(horizontalSlider1, True)
End If