First off, I am somewhat familiar with Windows Forms but new to WPF. I have a main window divided into three sections that I’m currently implementing as pages.
The first is a queue of individual strings in a fixed size viewing area. When a new string is added at the “top”, the one at the “bottom” disappears, creating a scrolling effect. Here for example.
The second looks essentially like a grid with 9 columns and about 15 rows. It really is a three groups of three columns that wrap text content. For instance when the first section fills up, the next data element is added to the first row of the second section. Here for example
The third is simply a text ticker scrolling left to right.
I’d appreciate any insight. I’d consider any third party controls as well.
Thanks!
1) You could use a simple ListBox for this.
2) You could probably bend the DataGrid to your will.