ToolTipService.SetInitialShowDelay(DependencyObject, Int32) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Establece el valor de la propiedad adjunta InitialShowDelay de un objeto.
public:
static void SetInitialShowDelay(System::Windows::DependencyObject ^ element, int value);
public static void SetInitialShowDelay (System.Windows.DependencyObject element, int value);
static member SetInitialShowDelay : System.Windows.DependencyObject * int -> unit
Public Shared Sub SetInitialShowDelay (element As DependencyObject, value As Integer)
Parámetros
- element
- DependencyObject
Objeto en el que se escribe la propiedad adjunta.
- value
- Int32
Valor que se va a establecer.
Ejemplos
En el ejemplo siguiente se muestra cómo establecer el valor de la ToolTipService.InitialShowDelay
propiedad adjunta.
ToolTipService.SetInitialShowDelay(ellipse1, 1000);
ToolTipService.SetInitialShowDelay(ellipse1, 1000)