WPF:如何对列表或网格中的项目执行自定义渲染?
使用 Adobe Flex,我将创建一个自定义 ItemRenderer 来更改网格中项目的显示。 这会执行一些覆盖网格控件呈现项目的方式的代码。 我如何使用 WPF 执行此操作? 可用技术对性能有何影响?
我的最初目标是显示一个图标、一个标题和一个描述。 理想情况下,描述应位于标题下方。 Vista TaskDialog 按钮使用类似的 UI。
With Adobe Flex I would create a custom ItemRenderer to change the display of items in a grid. This executes some code that overrides how the grid control renders items. How do I do this with WPF? What are the performance implications with the techniques available?
My initial aim is to display an icon, a title, and a description. Ideally the description would be under the title. A similar UI is used by the Vista TaskDialog buttons.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用数据模板。 您可以将其设置为 ItemTemplate (ListBox)、CellTemplate (GridViewColumn)、HeaderTemplate 等。
性能取决于模板的复杂程度,但对于您所描述的内容,您不应该注意到差异。
Use Data Template. You can set it for ItemTemplate (ListBox), CellTemplate (GridViewColumn), HeaderTemplate, etc.
Performance depends on how complex the template is, but for what you described, you should not notice a difference.