Stylus.GetIsPressAndHoldEnabled(DependencyObject) Método

Definição

Obtém o valor da propriedade anexada IsPressAndHoldEnabled no elemento especificado.

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

Parâmetros

element
DependencyObject

Um UIElement ou ContentElement no qual será determinado se pressionar e manter pressionado está habilitado.

Retornos

true se o elemento especificado tiver pressionado e pressionado habilitado; caso contrário, false.

Atributos

Exemplos

O exemplo a seguir demonstra como habilitar pressionar e segurar um Slider. Este exemplo pressupõe que haja um Slider chamado horizontalSlider1.

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

Aplica-se a