C# Winforms PropertyGrid 和 ErrorProvider
我正在努力将 errorprovider 扩展到 propertygrid 和 treeview 控件。 我在以下位置找到了一篇非常有用的帖子: 示例 详细介绍了如何将 errorprovider 添加到 propertygrid 中,并且效果非常好。 我的问题是作者怎么知道 IPropertyValueUIService 是 propertygrid 用于显示图标和工具提示的接口。 我已经使用 Reflector 拆解了 propertygrid 和 IPropertyValueUIService,但没有看到任何关系。
这是为了我自己作为程序员的启发,以及尝试将错误提供程序扩展到树视图。
提前致谢, 迪松
I'm working on extending the errorprovider to the propertygrid and treeview controls. I found a very helpful post at: Example
detailing how to add the errorprovider to a propertygrid, and it works very well. My question is how did the author know that IPropertyValueUIService is the interface that the propertygrid uses to display the icon and tooltip. I have used Reflector to dissassemble the propertygrid and IPropertyValueUIService and I don't see any relationship.
This is for my own edification as a programmer as well as trying to extend the errorprovider to a treeview.
Thanks in advance,
dhysong
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜测部分来自文档 ?
或来自反射镜; 找到IPropertyValueUIService,按Ctrl+r并展开“Used By”,可以看到
PropertyGridInternal.PropertyDescriptorGridEntry
如何使用它。I'm guessing partly from the documentation?
Or from reflector; find IPropertyValueUIService, press Ctrl+r and expand "Used By", and you can see how it is used by
PropertyGridInternal.PropertyDescriptorGridEntry
.