过滤 PropertyGrid 中的元素

发布于 2024-08-30 09:26:17 字数 555 浏览 9 评论 0原文

在 System.Windows.Forms 中,有一个 PropertyGrid 用于显示附加对象的属性。比方说 MyTextBox : TextBox

现在,我想在其上显示一些 MyTextBox 属性,例如 SizeLocation 和我的自定义属性 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心房的律动 2024-09-06 09:26:17

您应该能够使用 [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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文