在哪里可以找到免费的 WPF 控件
是否有任何网站可以找到像 Griview 这样的免费 WPF 控件?我目前正在开发一个复杂的项目,我需要一个可自定义的 WPF Gridview,例如 telerik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有任何网站可以找到像 Griview 这样的免费 WPF 控件?我目前正在开发一个复杂的项目,我需要一个可自定义的 WPF Gridview,例如 telerik
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以使用 WPF 工具包 以及 扩展 WPF 工具包。
You can use controls from the WPF Toolkit as well as Extended WPF Toolkit.
查看代码 plex 上的 AvalonControlsLibrary 中的控件,它有一个与其他控件分开的 DataGridView 控件。 -
http://avaloncontrolslib.codeplex.com/wikipage?title=Home&ProjectName =avaloncontrolslib
DataGridView
DataGridView 可能是此控件的一个误导性名称。这个控件与WinForms DataGridView 相差甚远(也许有一天它会J)。基本上,该控件是一个 WPF ListView 控件,但它能够为您自动生成 GridViewColumns。它通过查看对象的属性来生成列。您还可以通过使用自定义属性装饰属性来指定生成列的方式。欲了解更多信息,请查看这篇文章。 http:// /marlongrech.wordpress.com/2007/09/01/listview-with-auto- Generation-of-column-enable-disable-columns/
类似的 SF 问题 - 哪里可以找到免费的 WPF 控件和控件模板?
Have a look at the controls in AvalonControlsLibrary on code plex, it is having a DataGridView control apart from other controls. -
http://avaloncontrolslib.codeplex.com/wikipage?title=Home&ProjectName=avaloncontrolslib
DataGridView
DataGridView is a maybe a misleading name for this control. This control is far from being the same as the WinForms DataGridView (maybe someday it will J). Basically this control is a WPF ListView control but it is capable of auto generate the GridViewColumns for you. It generates the columns by looking at the objects’ properties. You can also specify how you generate the columns by decorating your properties with a custom attribute. For more information have a look at this post. http://marlongrech.wordpress.com/2007/09/01/listview-with-auto-generation-of-column-enable-disable-columns/
Similar SF question - Where can I find free WPF controls and control templates?
在 codeplex.com 和 codeproject.com。然而最好的总是要花钱的。
On codeplex.com and codeproject.com. However the best always cost money.