ToolTipService.SetShowDuration(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 ShowDuration attached property for an object.
public:
static void SetShowDuration(System::Windows::DependencyObject ^ element, int value);
public static void SetShowDuration (System.Windows.DependencyObject element, int value);
static member SetShowDuration : System.Windows.DependencyObject * int -> unit
Public Shared Sub SetShowDuration (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.ShowDuration
attached property.
ToolTipService.SetShowDuration(ellipse1, 7000);
ToolTipService.SetShowDuration(ellipse1, 7000)
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.