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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.