i have a TextBlock
Text
target with a business object as a Binding
Source
, and this binding works fine with updates to the business object property propagating to the GUI, with the help of INotifyPropertyChanged
Aim
The default behavior of such a binding is to replace the contents of the control such that say a second update to the business property will overwrite the display of the first update.
I would like the UI to display the first update, then append the second update and so forth, how might that be possible ?
An Implementation?
Im not familiar with even the basic arsenal of wpf controls, would this be easier with a control other than TextBlock?
Or is it possible to do such binding with TextBlock?
It is undesirable for the business object to remember / store the previous updates.
I have already tried to use the object parameter
in IValueConverter
Convert method, but that does not work...