In my ViewModel i've got an ObservableCollection of string that contains all messages received from ethernet:
public ObservableCollection<string> Messages { get; set; }
And i binded it to a texbox in the view with a converter:
<TextBox Text="{Binding Messages, Converter={StaticResource ListToStringConverter}}" HorizontalAlignment="Center"/>
my converter is a simple
string finalStr;
foreach(var v in Messages)
{
finalStr += v + "\n";
}
return finalStr;
When i select some text the selection disapear when a new message is added to my Messages.
Any ideas how to keep the selection?
You could prevent this with some handling of the SelectionChanged and TextChanged events.
Then, in the handlers:
This would be best made in a Behavior with Attached Properties, and not in code-behind, but you get the idea.