What kind of WPF text control would be best to display the moves of a chess game? Ideally the clicked move would highlight in bold. Example text below. Each move should be clickable, should highlight when clicked (e.g. Bxf6) and would call some code to action the move.
Thanks.
I suggest using ListBox with TextBlock as ListBox.ItemTemplate and WrapPanel as ListBox.ItemsPanel.
You can also highlight the ListBox current selected item.