过滤 PropertyGrid 中的元素
在 System.Windows.Forms 中,有一个 PropertyGrid 用于显示附加对象的属性。比方说 MyTextBox : TextBox
。
现在,我想在其上显示一些 MyTextBox 属性,例如 Size
、Location
和我的自定义属性 Date
。
更重要的是,我希望能够更改真实的属性名称,例如“尺寸”、“位置”和“开始日期”。
我看到了关于这个主题的两个项目:第一个和第二个,但第一个效果不佳(对于可浏览属性),并且第二似乎为每个属性更改添加一个事件,这是不可接受的。
In System.Windows.Forms there are a PropertyGrid that displays properties of an attached object. Let's say MyTextBox : TextBox
.
Now, I would like to display on it some MyTextBox properties, say only Size
, Location
and my custom property Date
.
More that than, I would like to be able to change the real property names, say "Dimension", "Location" and "Starting Date".
I saw two projects on this subject : first and second, but first does not work well(for browsable properties), and the second seems to add an event for each property changes, this is not acceptable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用
[Browsable(false)]
属性隐藏它们。如果要更改名称,则需要编写自己的 TypeDescriptor,如下所示 此处You should be able to hide them with a
[Browsable(false)]
attribute. If you want to change the name, you need to write your own TypeDescriptor as seen here