ToolTipService.SetShowOnDisabled(DependencyObject, Boolean) 方法

定义

设置对象的 ShowOnDisabled 附加属性的值。

public:
 static void SetShowOnDisabled(System::Windows::DependencyObject ^ element, bool value);
public static void SetShowOnDisabled (System.Windows.DependencyObject element, bool value);
static member SetShowOnDisabled : System.Windows.DependencyObject * bool -> unit
Public Shared Sub SetShowOnDisabled (element As DependencyObject, value As Boolean)

参数

element
DependencyObject

将附加属性写入到的对象。

value
Boolean

要设置的值。

示例

以下示例演示如何设置附加属性的值 ToolTipService.ShowOnDisabled

ToolTipService.SetShowOnDisabled(ellipse2, true);
ToolTipService.SetShowOnDisabled(ellipse2, True)

适用于

另请参阅