<TextBlock Text="{Binding Path=CustomerName }"/>Public Class Customer : INotifyPropertyChanged{ public int ID { get; set; } public string CustomerName { get; set; //raise on property change} public event PropertyChangedEventHandler PropertyChanged;}
<TextBox Name="txtBox" Text="{Binding Path=CustomerName, UpdateSourceTrigger= PropertyChanged}" />\>