Hi,
I've a problem with my binded class.
I've a Label with the following binding:<Label Content="{Binding Text1Top}"/>and the corresponding class with the following property:public string Text1Top { get; set; }
All works fine...at the beginning. But when I set the Value of Text1Top in my binded class to another value the Label in the tile does not update the value. If I change the Size of the Parent-Window (i.e. to maximize) then the content of the Label shows the new value (but not always, it seems to be randomize).
Now, I need help! ;o))
Greets from Germany...
Marco
oh, thank you ;o)
Hello Marco,
You need to implement the INotifyPropertyChanged interface on your underlying class.