共用方式為


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))

適用於

另請參閱