我应该为我的应用程序使用什么WPF控件?

时间:2022-10-19 22:09:49

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.

首先,我对Windows Forms有些熟悉,但对WPF不熟悉。我有一个主窗口,分为三个部分,我目前正在实现页面。

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

第二个看起来基本上像一个有9列和大约15行的网格。它实际上是包含文本内容的三组三列。例如,当第一部分填满时,下一个数据元素被添加到第二部分的第一行。这里举个例子

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 个解决方案

#1


0  

1) You could use a simple ListBox for this.

1)你可以使用一个简单的ListBox。

2) You could probably bend the DataGrid to your will.

2)你可能会根据自己的意愿弯曲DataGrid。

#1


0  

1) You could use a simple ListBox for this.

1)你可以使用一个简单的ListBox。

2) You could probably bend the DataGrid to your will.

2)你可能会根据自己的意愿弯曲DataGrid。