the TextBlock binding does not work and I cant figure why...
(This Code Works but the TextBlock does not get Updated )
XAML
<TextBlock x:Name="filterAllText" Text="{Binding UpdateSourceTrigger=PropertyChanged}" /> Codebehind
filterAllText.DataContext = LogSession.test.MyCoynt; C#
public class Test : INotifyPropertyChanged { public int myCoynt; public int MyCoynt { get { return myCoynt; } set { myCoynt = value; NotifyPropertyChanged(); } } public event PropertyChangedEventHandler PropertyChanged; protected virtual void NotifyPropertyChanged( [CallerMemberName] String propertyName = "") { PropertyChangedEventHandler handler = PropertyChanged; if (handler != null) { handler(this, new PropertyChangedEventArgs(propertyName)); } }
Bindingneeds aPath, i.e{Binding MyCoynt, UpdateSourceTrigger=PropertyChanged}"DataContext?