In This Article

StringPropertyChangedEventArgs Class

Provides event arguments for a property change event, indicating the old and new values.

public class StringPropertyChangedEventArgs : PropertyChangedEventArgs<string>
Inheritance:
System.Object System.EventArgs PropertyChangedEventArgs<System.String> Object

Constructors

StringPropertyChangedEventArgs(String, String)

Initializes a new instance of the StringPropertyChangedEventArgs class.

public StringPropertyChangedEventArgs(string oldValue, string newValue)
Parameter Type Description
oldValue System.String

The previous value of the property being tracked as reported by an event.

newValue System.String

The new value of the property being tracked as reported by an event.

Inherited Members