gpt4 book ai didi

c# - 如何使属性网格将某些值显示为只读? C# 网络

转载 作者:行者123 更新时间:2023-11-30 22:36:48 25 4
gpt4 key购买 nike

有些属性我不想通过属性网格进行编辑,但我仍然希望它们可见,甚至是可扩展的。

我该怎么做?

最佳答案

您可以像这样对要设为只读的属性使用[ReadOnly(true)] 属性

[ReadOnly(true)]
public int ReadOnlyProperty
{
get
{
return _ReadOnlyProperty;
}
set
{
_ReadOnlyProperty = value;
}
}

关于c# - 如何使属性网格将某些值显示为只读? C# 网络,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6809032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com