ToolTipService.SetShowOnDisabled(DependencyObject, Boolean) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Imposta il valore della proprietà associata ShowOnDisabled per un oggetto.
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)
Parametri
- element
- DependencyObject
Oggetto in cui viene scritta la proprietà associata.
- value
- Boolean
Il valore da impostare.
Esempio
Nell'esempio seguente viene illustrato come impostare il valore per la ToolTipService.ShowOnDisabled
proprietà associata.
ToolTipService.SetShowOnDisabled(ellipse2, true);
ToolTipService.SetShowOnDisabled(ellipse2, True)