TextChangedEventArgs Construtores

Definição

Inicializa uma nova instância da TextChangedEventArgs classe.

Sobrecargas

Name Description
TextChangedEventArgs(RoutedEvent, UndoAction)

Inicializa uma nova instância da TextChangedEventArgs classe, usando o ID do evento especificado e a ação de desfazer.

TextChangedEventArgs(RoutedEvent, UndoAction, ICollection<TextChange>)

Inicializa uma nova instância da TextChangedEventArgs classe, usando o ID do evento especificado, desfazer ação e alterações de texto.

TextChangedEventArgs(RoutedEvent, UndoAction)

Inicializa uma nova instância da TextChangedEventArgs classe, usando o ID do evento especificado e a ação de desfazer.

public:
 TextChangedEventArgs(System::Windows::RoutedEvent ^ id, System::Windows::Controls::UndoAction action);
public TextChangedEventArgs(System.Windows.RoutedEvent id, System.Windows.Controls.UndoAction action);
new System.Windows.Controls.TextChangedEventArgs : System.Windows.RoutedEvent * System.Windows.Controls.UndoAction -> System.Windows.Controls.TextChangedEventArgs
Public Sub New (id As RoutedEvent, action As UndoAction)

Parâmetros

id
RoutedEvent

O identificador do evento (ID).

action
UndoAction

A UndoAction causa foi causada pela mudança de texto.

Aplica-se a

TextChangedEventArgs(RoutedEvent, UndoAction, ICollection<TextChange>)

Inicializa uma nova instância da TextChangedEventArgs classe, usando o ID do evento especificado, desfazer ação e alterações de texto.

public:
 TextChangedEventArgs(System::Windows::RoutedEvent ^ id, System::Windows::Controls::UndoAction action, System::Collections::Generic::ICollection<System::Windows::Controls::TextChange ^> ^ changes);
public TextChangedEventArgs(System.Windows.RoutedEvent id, System.Windows.Controls.UndoAction action, System.Collections.Generic.ICollection<System.Windows.Controls.TextChange> changes);
new System.Windows.Controls.TextChangedEventArgs : System.Windows.RoutedEvent * System.Windows.Controls.UndoAction * System.Collections.Generic.ICollection<System.Windows.Controls.TextChange> -> System.Windows.Controls.TextChangedEventArgs
Public Sub New (id As RoutedEvent, action As UndoAction, changes As ICollection(Of TextChange))

Parâmetros

id
RoutedEvent

O identificador do evento (ID).

action
UndoAction

A UndoAction causa foi causada pela mudança de texto.

changes
ICollection<TextChange>

As mudanças que ocorreram durante este evento. Para obter mais informações, veja Changes.

Observações

TextChangedEventArgs é introduzido na versão 3.5 do .NET Framework. Para mais informações, consulte Versões e Dependências.

Aplica-se a