StringPropertyChangedEventArgs Class
Provides event arguments for a property change event, indicating the old and new values.
public class StringPropertyChangedEventArgs : PropertyChangedEventArgs<string>
- Inheritance:
- object EventArgs PropertyChangedEventArgs<string> object
Constructors
StringPropertyChangedEventArgs(string, string)
Initializes a new instance of the StringPropertyChangedEventArgs class.
public StringPropertyChangedEventArgs(string oldValue, string newValue)
| Parameter | Type | Description |
|---|---|---|
| oldValue | string | The previous value of the property being tracked as reported by an event. |
| newValue | string | The new value of the property being tracked as reported by an event. |