如何将默认的PropertyDescriptor设置为属性?
是否有用于设置属性默认 PropertyDescriptor 的属性?我只想向属性添加属性并指定 PropertyDescriptor。然后 PropertyDescriptor 的实例就被创建了。 我在.net框架中没有找到该属性。
Are there an attribute for setting default PropertyDescriptor for a property? I just want to add a attribute to a property and specify PropertyDescriptor. And then the instance of the PropertyDescriptor would have been created.
I haven't found the attribute in .net framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不能。但是,您可以实现
ICustomTypeDescriptor
< /a> 或(更简单)继承CustomTypeDescriptor< /代码>
。
如果您的对象包含在集合中,则可以使集合实现
ITypedList
相反。No, you can't. However, you could implement
ICustomTypeDescriptor
or (easier) inherit fromCustomTypeDescriptor
.If your objects are contained in a collection, you could make the collection implement
ITypedList
instead.