创建“发行说明”使用 Infragistics NetAdvantage 组件在 WinForms 中进行屏幕显示
我使用 Infragistics NetAdvantage 2007 Vol.1“继承”了一个相当重要的 Winforms 项目。 2 套组件。
我对这些不太熟悉,也不知道我如何面对问题 - 知道它们的人可能会立即找到解决方案 - 所以这是我的问题:
我的任务是创建一个“发行说明”屏幕,该屏幕应显示对应用程序所做的最后几个更改,包括版本号、发布日期以及该版本中更改内容的简要说明。来自 ASP.NET,我想我应该使用一个足够简单的数据库表,以及一个转发器或可模板化的列表视图控件或其他东西,来显示发行说明,例如:
+---------------------------------------------------------+
| Version 1.0.7 Released Mar 1, 2010 |
+---------------------------------------------------------+
| Fixes in this version: |
| * Case-12345: fixed |
| * Case-12346: fixed |
| * Case-12347: fixed |
| |
| New Features in this version: |
| * FEA-2570: implemented................................ |
| * FEA-2571: implemented................................ |
| * FEA-2572: implemented................................ |
+=========================================================+
| Version 1.0.6 Released Feb 12, 2010 |
+---------------------------------------------------------+
| Fixes in this version: |
| * Case-11345: fixed |
| |
| New Features in this version: |
| * FEA-1570: implemented................................ |
但我似乎找不到任何 Winforms 控件,每个远程或隐约类似于这个......
有什么想法吗?有接受者吗? Winforms 本身或 Infragistics 组件集中的任何内容都可以让我轻松创建这样的屏幕?
感谢您的任何提示和指示!
I've "inherited" a fairly substantial Winforms project using the Infragistics NetAdvantage 2007 Vol. 2 set of components.
I'm not awfully familiar with those, and how I'm facing a problem - someone who knows them probably will have a solution in no time - so here's my question:
I'm tasked with creating a "Release Notes" screen, which should show the last couple of changes made to the app, with a version number, release dates, and a brief explanation what was changed in that version. Coming from ASP.NET, I thought I'd use a simple enough database table, and a repeater or templatable listview control or something, to show the release notes, something like:
+---------------------------------------------------------+
| Version 1.0.7 Released Mar 1, 2010 |
+---------------------------------------------------------+
| Fixes in this version: |
| * Case-12345: fixed |
| * Case-12346: fixed |
| * Case-12347: fixed |
| |
| New Features in this version: |
| * FEA-2570: implemented................................ |
| * FEA-2571: implemented................................ |
| * FEA-2572: implemented................................ |
+=========================================================+
| Version 1.0.6 Released Feb 12, 2010 |
+---------------------------------------------------------+
| Fixes in this version: |
| * Case-11345: fixed |
| |
| New Features in this version: |
| * FEA-1570: implemented................................ |
But I can't seem to find any Winforms controls that every remotely or vaguely resemble this......
Any ideas? Any takers? Anything in Winforms itself, or in the Infragistics set of components, that would allow me to create such a screen easily??
Thanks for any hints and pointers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不熟悉 Infragistics 控件,但如果您熟悉 HTML,您可以使用 WebBrowser 控件,或者如果您更喜欢 RTF - RichTextBox。
I am not familiar with Infragistics controls but if you are comfortable with HTML you could use the WebBrowser control or if you prefer RTF - RichTextBox.
我无法直接回答,只能说 NetAdvantage 技能相当专业,您可能会更喜欢在 Infragistics 论坛本身提问。我更熟悉他们控件的 ASP.NET 方面。
I cannot answer directly except to say that NetAdvantage skills are reasonably specialised and you might get more joy asking in the Infragistics forums themselves. I'm more familiar to the ASP.NET side of their controls.