C# PropertyGrid - 如何使数组元素只读?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以定义自己的 TypeConverter。使用 TypeConverter,您可以控制 PropertyGrid 显示的属性及其行为。
You can define your own TypeConverter. Using a TypeConverter, you can control the properties that the PropertyGrid shows, and their behavior.
readonly 关键字并不像您想象的那样工作:
是的,使用 TypeConverter 来更改 PropertyGrid 中类型的行为。或者只是给它 [Browsable(false)] 属性,因为无论如何没有人想查看布尔数组。
The readonly keyword doesn't work the way you think it does:
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.