Xceed Toolkit for Maui v2.0 Documentation
TextChanged Event


Xceed.Maui.Toolkit Assembly > Xceed.Maui.Toolkit Namespace > TextBox Class : TextChanged Event
The event that is raised when the Text is modified.
Syntax
'Declaration
 
Public Event TextChanged As EventHandler(Of TextChangedEventArgs)
'Usage
 
Dim instance As TextBox
Dim handler As EventHandler(Of TextChangedEventArgs)
 
AddHandler instance.TextChanged, handler
public event EventHandler<TextChangedEventArgs> TextChanged
Event Data

The event handler receives an argument of type TextChangedEventArgs containing data related to this event. The following TextChangedEventArgs properties provide information specific to this event.

PropertyDescription
 
 
Requirements

Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also