ToolTipService.GetShowOnDisabled(DependencyObject) Метод

Определение

Получает значение присоединенного свойства ShowOnDisabled для объекта.

public:
 static bool GetShowOnDisabled(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static bool GetShowOnDisabled (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetShowOnDisabled : System.Windows.DependencyObject -> bool
Public Shared Function GetShowOnDisabled (element As DependencyObject) As Boolean

Параметры

element
DependencyObject

Объект, из которого считывается значение свойства.

Возвращаемое значение

Boolean

Значение свойства объекта ShowOnDisabled.

Атрибуты

Примеры

В следующем примере показано, как получить значение для присоединенного ToolTipService.ShowOnDisabledProperty свойства. Метод FindName находит вызываемый ellipse2объект , который является .Ellipse

myBool = ToolTipService.GetShowOnDisabled(
 (DependencyObject)FindName("ellipse2"));
myBool = ToolTipService.GetShowOnDisabled(CType(FindName("ellipse2"), DependencyObject))

Применяется к

См. также раздел