Leadtools.Windows.Controls Send comments on this topic. | Back to Introduction - LEADTOOLS WPF | Help Version 16.5.9.25
TextChanged Event
See Also 
Leadtools.Windows.Controls Namespace > ImageListItem Class : TextChanged Event





Occurs when the value of the Text property changes.

Syntax

Visual Basic (Declaration) 
Public Event TextChanged() As RoutedPropertyChangedEventHandler(Of String)
Visual Basic (Usage)Copy Code
Dim instance As ImageListItem
Dim handler As RoutedPropertyChangedEventHandler(Of String)
 
AddHandler instance.TextChanged, handler
C# 
public event RoutedPropertyChangedEventHandler<string> TextChanged()
C++/CLI 
public:
event RoutedPropertyChangedEventHandler<String> TextChanged();
XAML Attributes Usage 

<object TextChanged=EventHandler<ExceptionRoutedEventArgs>/> ...

Routed Event Information 

Identifier field

TextChangedEvent

Routing strategy

Bubbling

Delegate

EventHandler<(Of <(TEventArgs>)>)

XAML Attributes Usage 

<object TextChanged=EventHandler<ExceptionRoutedEventArgs>/> ...

Routed Event Information 

Identifier field

TextChangedEvent

Routing strategy

Bubbling

Delegate

EventHandler<(Of <(TEventArgs>)>)

Remarks

This event is raised if the Text property is changed by either a programmatic modification or user interaction.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also