TextChangedEventArgs Konstruktory

Definice

Inicializuje novou instanci TextChangedEventArgs třídy.

Přetížení

Name Description
TextChangedEventArgs(RoutedEvent, UndoAction)

Inicializuje novou instanci TextChangedEventArgs třídy pomocí zadané ID události a vrátit akci zpět.

TextChangedEventArgs(RoutedEvent, UndoAction, ICollection<TextChange>)

Inicializuje novou instanci TextChangedEventArgs třídy pomocí zadané ID události, zpět akce a změny textu.

TextChangedEventArgs(RoutedEvent, UndoAction)

Inicializuje novou instanci TextChangedEventArgs třídy pomocí zadané ID události a vrátit akci zpět.

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)

Parametry

id
RoutedEvent

Identifikátor události (ID).

action
UndoAction

Příčiny UndoAction změny textu

Platí pro

TextChangedEventArgs(RoutedEvent, UndoAction, ICollection<TextChange>)

Inicializuje novou instanci TextChangedEventArgs třídy pomocí zadané ID události, zpět akce a změny textu.

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))

Parametry

id
RoutedEvent

Identifikátor události (ID).

action
UndoAction

Příčiny UndoAction změny textu

changes
ICollection<TextChange>

Změny, ke kterým došlo během této události. Další informace najdete na webu Changes.

Poznámky

TextChangedEventArgs je zaveden v rozhraní .NET Framework verze 3.5. Další informace naleznete v tématu Verze a závislosti.

Platí pro