ToolTipService.GetInitialShowDelay(DependencyObject) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取对象的 InitialShowDelay 附加属性的值。
public:
static int GetInitialShowDelay(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static int GetInitialShowDelay (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetInitialShowDelay : System.Windows.DependencyObject -> int
Public Shared Function GetInitialShowDelay (element As DependencyObject) As Integer
参数
- element
- DependencyObject
从中读取属性值的对象。
返回
对象的 InitialShowDelay 属性值。
- 属性
示例
以下示例演示如何获取附加属性的值 ToolTipService.InitialShowDelay
。 该方法 FindName 查找调用 ellipse2
的对象,该对象是一个 Ellipse。
myInt = ToolTipService.GetInitialShowDelay(
(DependencyObject)FindName("ellipse2"));
myInt = ToolTipService.GetInitialShowDelay(CType(FindName("ellipse2"), DependencyObject))