有些属性我想通过属性网格无法编辑,但我仍然希望它们可见,甚至可扩展。
我该怎么做?
答案 0 :(得分:3)
您可以对要使其读取的属性使用[ReadOnly(true)]
属性,如此
[ReadOnly(true)]
public int ReadOnlyProperty
{
get
{
return _ReadOnlyProperty;
}
set
{
_ReadOnlyProperty = value;
}
}