Microsoft .NET 框架是否提供了分层接口?
我想实现一个具有可指定 DataSource 属性的控件,如果我可以继承并且 DataSource 的类型实现某种具有确保属性和方法的分层接口,那就太好了。
.NET 提供这样的接口吗?谷歌搜索什么也没透露。
I want to implement a control with a specifiable DataSource property and it would be great if I could inherit and the type of the DataSource implements some sort of Hierarchical interface with properties and methods ensured.
Does .NET supply such an interface? Googling revealed nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个
HierarchicalDataTemplate
,请参阅这个问题。There is a
HierarchicalDataTemplate
, see this SO question.您可能正在寻找IBindingList 接口。
Possibly you are after the IBindingList interface.