创建 WPF 属性网格?
如果我想在 WPF 中创建自己的属性网格控件,我应该从哪里开始寻找?
Where would I start looking, if I wanted to create my own property grid control in WPF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果我想在 WPF 中创建自己的属性网格控件,我应该从哪里开始寻找?
Where would I start looking, if I wanted to create my own property grid control in WPF?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
@Pop Catalin 提到的 WPF Property Grid 很好,但在 MVVM 场景中使用起来很痛苦;数据绑定似乎仅在控件首次加载时才起作用,一旦您尝试绑定到另一个对象,它就会失败。我最终不得不将视图模型耦合到视图以检索属性网格并直接设置绑定对象。布莱赫!
扩展 WPF 工具包中包含一个更好的免费控件;它可以更好地处理数据绑定,而且视觉效果也更好,从 VS 2010 的属性网格中汲取了很多线索。
WPF Property Grid as mentioned by @Pop Catalin is good, but is painful to use in an MVVM scenario; databinding only seems to work when the control first loads, once you try binding to another object, it fails. I ended up having to couple my view model to the view to retrieve the property grid and directly set the bound object. Blech!
A better free control is the one included in the Extended WPF Toolkit; it handles the databinding much better, and visually it's nicer too, having picked up a lot of cues from VS 2010's property grid.