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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.