我可以在属性为public时覆盖Name属性,但是当我将其设置为private时,它会继承Picturebox的Name。我想将它设为私有,因为我不希望在MyPictureBox类生成的对象中显示此属性。感谢。
class MyPictureBox : PictureBox
{
private string name;
private new string Name
{
get { return name; }
set { name = value; }
}
}