ToolTipService.SetShowOnDisabled(DependencyObject, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定物件的 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)