AutomationEvent Classe
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.
Identifica un evento di automazione interfaccia utente.
public ref class AutomationEvent : System::Windows::Automation::AutomationIdentifier
public class AutomationEvent : System.Windows.Automation.AutomationIdentifier
type AutomationEvent = class
inherit AutomationIdentifier
Public Class AutomationEvent
Inherits AutomationIdentifier
- Ereditarietà
Esempio
Nel gestore eventi di esempio seguente, gli AutomationEvent argomenti dell'evento vengono confrontati con l'oggetto AutomationEvent che identifica l'evento Richiamato.
/// <summary>
/// AutomationEventHandler delegate.
/// </summary>
/// <param name="src">Object that raised the event.</param>
/// <param name="e">Event arguments.</param>
private void OnUIAutomationEvent(object src, AutomationEventArgs e)
{
// Make sure the element still exists. Elements such as tooltips
// can disappear before the event is processed.
AutomationElement sourceElement;
try
{
sourceElement = src as AutomationElement;
}
catch (ElementNotAvailableException)
{
return;
}
if (e.EventId == InvokePattern.InvokedEvent)
{
// TODO Add handling code.
}
else
{
// TODO Handle any other events that have been subscribed to.
}
}
''' <summary>
''' AutomationEventHandler delegate.
''' </summary>
''' <param name="src">Object that raised the event.</param>
''' <param name="e">Event arguments.</param>
Private Sub OnUIAutomationEvent(ByVal src As Object, ByVal e As AutomationEventArgs)
' Make sure the element still exists. Elements such as tooltips can disappear
' before the event is processed.
Dim sourceElement As AutomationElement
Try
sourceElement = DirectCast(src, AutomationElement)
Catch ex As ElementNotAvailableException
Exit Sub
End Try
If e.EventId Is InvokePattern.InvokedEvent Then
' TODO Add handling code.
Else
End If
' TODO Handle any other events that have been subscribed to.
Console.WriteLine("Event: " & e.EventId.ProgrammaticName)
End Sub
Commenti
Gli identificatori di questi tipi vengono trovati come campi in varie classi per identificare gli eventi; ad esempio , InvokedEvent. Sono disponibili anche negli argomenti dell'evento passati ai client Automazione interfaccia utente.
Non è possibile creare eventi personalizzati.
Proprietà
Id |
Ottiene l'identificatore numerico sottostante. (Ereditato da AutomationIdentifier) |
ProgrammaticName |
Ottiene il nome registrato a livello di codice. (Ereditato da AutomationIdentifier) |
Metodi
CompareTo(Object) |
Confronta questo oggetto AutomationIdentifier con un altro AutomationIdentifier. (Ereditato da AutomationIdentifier) |
Equals(Object) |
Restituisce un valore che indica se l'oggetto AutomationIdentifier fornito è equivalente a questo AutomationIdentifier. (Ereditato da AutomationIdentifier) |
GetHashCode() |
Restituisce il codice hash per questo identificatore di Automazione interfaccia utente. (Ereditato da AutomationIdentifier) |
GetType() |
Ottiene l'oggetto Type dell'istanza corrente. (Ereditato da Object) |
LookupById(Int32) |
Recupera un oggetto AutomationEvent che incapsula l'identificatore numerico specificato. |
MemberwiseClone() |
Crea una copia superficiale dell'oggetto Object corrente. (Ereditato da Object) |
ToString() |
Restituisce una stringa che rappresenta l'oggetto corrente. (Ereditato da Object) |