Jak implementować powiadomienie o zmianie właściwości

Aby zapewnić obsługę OneWay lub TwoWay powiązanie właściwości docelowej powiązania w celu automatycznego odzwierciedlenia dynamicznych zmian źródła powiązania (na przykład w celu automatycznego zaktualizowania okienka podglądu podczas edytowania formularza przez użytkownika), klasa musi dostarczyć odpowiednie powiadomienia o zmianie właściwości. W tym przykładzie pokazano, jak utworzyć klasę, która implementuje INotifyPropertyChangedklasę .

Przykład

Aby zaimplementować INotifyPropertyChanged , należy zadeklarować PropertyChanged zdarzenie i utworzyć metodę OnPropertyChanged . Następnie dla każdej właściwości, dla której chcesz zmienić powiadomienia, należy wywołać OnPropertyChanged metodę za każdym razem, gdy właściwość zostanie zaktualizowana.

using System.ComponentModel;
using System.Runtime.CompilerServices;

namespace SDKSample
{
  // This class implements INotifyPropertyChanged
  // to support one-way and two-way bindings
  // (such that the UI element updates when the source
  // has been changed dynamically)
  public class Person : INotifyPropertyChanged
  {
      private string name;
      // Declare the event
      public event PropertyChangedEventHandler PropertyChanged;

      public Person()
      {
      }

      public Person(string value)
      {
          this.name = value;
      }

      public string PersonName
      {
          get { return name; }
          set
          {
              name = value;
              // Call OnPropertyChanged whenever the property is updated
              OnPropertyChanged();
          }
      }

      // Create the OnPropertyChanged method to raise the event
      // The calling member's name will be used as the parameter.
      protected void OnPropertyChanged([CallerMemberName] string name = null)
      {
          PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
      }
  }
}
Imports System.ComponentModel
Imports System.Runtime.CompilerServices

' This class implements INotifyPropertyChanged
' to support one-way and two-way bindings
' (such that the UI element updates when the source
' has been changed dynamically)
Public Class Person
    Implements INotifyPropertyChanged

    Private personName As String

    Sub New()
    End Sub

    Sub New(ByVal Name As String)
        Me.personName = Name
    End Sub

    ' Declare the event
    Public Event PropertyChanged As PropertyChangedEventHandler Implements INotifyPropertyChanged.PropertyChanged

    Public Property Name() As String
        Get
            Return personName
        End Get
        Set(ByVal value As String)
            personName = value
            ' Call OnPropertyChanged whenever the property is updated
            OnPropertyChanged()
        End Set
    End Property

    ' Create the OnPropertyChanged method to raise the event
    ' Use the name of the member that called this method in place of name
    Protected Sub OnPropertyChanged(<CallerMemberName> Optional name As String = Nothing)
        RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs(name))
    End Sub

End Class

Aby zobaczyć przykład sposobu użycia klasy do obsługi TwoWay powiązania, zobacz Control When the Person TextBox Text Aktualizacje the Source (Kontrolka kiedy tekst kontrolki TextBox Aktualizacje źródło).

Zobacz też