C# PropertyGrid - 如何使数组元素只读?

发布于 2024-12-06 15:14:36 字数 179 浏览 0 评论 0原文

我有一个 PropertyGrid,我向其中添加了一组布尔值。数组本身被标记为只读,属性网格可以正确识别它。

但是:如果我在网格中展开数组,则所有项目都可由用户编辑。当然这不是我想要的。如果数组本身被标记为只读,那么它的所有元素也应该被标记为只读!

有什么方法可以在 PropertyGrid 中实现这种行为吗?

I have a PropertyGrid to which I add a array of bool-values. The array itself is marked as ReadOnly, which is recognized properly by the property grid.

BUT: If I expand the array in the Grid, all the items are editable by the user. Of course that's not what I want. If the array itself is marked a s ReadOnly all its elements shall be as well!

Is there any way to achieve this behavior in the PropertyGrid?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦年海沫深 2024-12-13 15:14:36

您可以定义自己的 TypeConverter。使用 TypeConverter,您可以控制 PropertyGrid 显示的属性及其行为。

You can define your own TypeConverter. Using a TypeConverter, you can control the properties that the PropertyGrid shows, and their behavior.

聽兲甴掵 2024-12-13 15:14:36

readonly 关键字并不像您想象的那样工作:

using System;

class Program {
    static readonly bool[] arr = { false, true };

    static void Main(string[] args) {
        arr[0] = true;
    }
}

是的,使用 TypeConverter 来更改 PropertyGrid 中类型的行为。或者只是给它 [Browsable(false)] 属性,因为无论如何没有人想查看布尔数组。

The readonly keyword doesn't work the way you think it does:

using System;

class Program {
    static readonly bool[] arr = { false, true };

    static void Main(string[] args) {
        arr[0] = true;
    }
}

Yes, use TypeConverter to alter the behavior of types in PropertyGrid. Or just give it the [Browsable(false)] attribute because nobody wants to look at an array of booleans anyway.

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