UIElementAutomationPeer.CreatePeerForElement(UIElement) 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.
Crea un oggetto UIElementAutomationPeer per l'oggetto UIElement specificato.
public:
static System::Windows::Automation::Peers::AutomationPeer ^ CreatePeerForElement(System::Windows::UIElement ^ element);
public static System.Windows.Automation.Peers.AutomationPeer CreatePeerForElement (System.Windows.UIElement element);
static member CreatePeerForElement : System.Windows.UIElement -> System.Windows.Automation.Peers.AutomationPeer
Public Shared Function CreatePeerForElement (element As UIElement) As AutomationPeer
Parametri
- element
- UIElement
Oggetto UIElement associato all'oggetto UIElementAutomationPeer.
Restituisce
Oggetto UIElementAutomationPeer creato per l'oggetto UIElement specificato.
Commenti
Questo UIElementAutomationPeer rimane in memoria fino a quando l'oggetto associato UIElement non viene distrutto.
La stessa istanza di UIElementAutomationPeer viene restituita dalle chiamate successive a questo metodo e chiama a FromElement. Il tipo del peer è determinato dal OnCreateAutomationPeer callback virtuale. Se UIElement non implementa il callback, non UIElementAutomationPeer viene creato alcun oggetto e questo metodo restituisce null
.