ToolTipService.SetInitialShowDelay(DependencyObject, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the value of the InitialShowDelay attached property for an object.
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)
Parameters
- element
- DependencyObject
The object to which the attached property is written.
- value
- Int32
The value to set.
Examples
The following example shows how to set the value for the ToolTipService.InitialShowDelay
attached property.
ToolTipService.SetInitialShowDelay(ellipse1, 1000);
ToolTipService.SetInitialShowDelay(ellipse1, 1000)
Applies to
See also
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.