Como: Implementar notificação de alteração de propriedade
Para dar suporte à vinculação de OneWay ou TwoWay para permitir que suas propriedades de destino de vinculação reflitam automaticamente as alterações dinâmicas da fonte de vinculação (por exemplo, para que o painel de visualização seja atualizado automaticamente quando o usuário edita um formulário), sua classe precisa fornecer as notificações de alteração de propriedade apropriadas. Este exemplo mostra como criar uma classe que implementa INotifyPropertyChanged.
Exemplo
Para implementar o INotifyPropertyChanged, deve declarar o evento PropertyChanged e criar o método OnPropertyChanged
. Em seguida, para cada propriedade para a qual você deseja notificações de alteração, ligue para OnPropertyChanged
sempre que a propriedade for atualizada.
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
Para ver um exemplo de como a classe Person
pode ser usada para dar suporte a TwoWay vinculação, consulte controle quando o texto TextBox atualiza ode origem.
Ver também
- Visão geral das fontes de vinculação
- Visão geral da vinculação de dados
- Tópicos de instruções
.NET Desktop feedback