更改属性的 DisplayName 属性
我正在寻找一种在运行时更改属性的 DisplayName
属性值的方法。 这在 Windows 窗体中可能吗?
I am looking for a way to change the value of the DisplayName
attribute of a property at run-time. Is this even possible in Windows Forms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您的类创建您自己的 TypeDescriptionProvider 并分配它在运行时使用 TypeDescriptor< 单个对象(或整个类) /a>. 另请查看 GetTypeDescriptor 和 GetProperties,最后 AttributeArray。
一般来说,创建自己的类型描述符并不难,但是你需要仔细阅读msdn并进行大量尝试。
Create your own TypeDescriptionProvider for your class, and assign it at runtime to single object (or entire class) using TypeDescriptor. Also look into GetTypeDescriptor and GetProperties, and finally AttributeArray.
In general creating your own type descriptor is not so hard, but you need to read msdn carefully and do a lot of tries.