NotifyPropertyChangedInvocatorAttribute Class |
Namespace: Ozeki.Common
The NotifyPropertyChangedInvocatorAttribute type exposes the following members.
Name | Description | |
---|---|---|
NotifyPropertyChangedInvocatorAttribute | Initializes a new instance of the NotifyPropertyChangedInvocatorAttribute class | |
NotifyPropertyChangedInvocatorAttribute(String) | Initializes a new instance of the NotifyPropertyChangedInvocatorAttribute class |
Name | Description | |
---|---|---|
ParameterName |
public class Foo : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; [NotifyPropertyChangedInvocator] protected virtual void NotifyChanged(string propertyName) { ... } private string _name; public string Name { get { return _name; } set { _name = value; NotifyChanged("LastName"); /* Warning */ } } }