Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 2.15 KB

inotifypropertychanged.md

File metadata and controls

30 lines (18 loc) · 2.15 KB
-api-id -api-type
T:Microsoft.UI.Xaml.Data.INotifyPropertyChanged
winrt interface

Microsoft.UI.Xaml.Data.INotifyPropertyChanged

-description

Notifies clients that a property value has changed.

-remarks

When programming with .NET, this interface is hidden and developers should use the System.ComponentModel.INotifyPropertyChanged interface.

The INotifyPropertyChanged interface is used to notify clients, typically binding clients, that a property value has changed. For example, consider an Employee object with a property called Name. To provide generic property-change notification, the Employee type implements the INotifyPropertyChanged interface and raises a PropertyChanged event when Name is changed.

The PropertyChanged event can indicate that all properties on the object have changed by using String.Empty for the PropertyName property of the PropertyChangedEventArgs. Note that you cannot use null (Nothing in Microsoft Visual Basic) for this like you can in Windows Presentation Foundation (WPF) and Microsoft Silverlight.

The PropertyChanged event can indicate that indexer properties on the object have changed by using a PropertyName value of "Item[indexer ]" for specific indexers or "Item[]" for all indexers. Note that C++ does not currently support binding to indexers. For a workaround, see the XAML data binding sample.

-see-also

Binding, Data binding in depth, XAML data binding sample

-examples