隐藏PictureBox的属性

时间:2014-02-09 19:30:33

标签: c# oop

我可以在属性为public时覆盖Name属性,但是当我将其设置为private时,它会继承Picturebox的Name。我想将它设为私有,因为我不希望在MyPictureBox类生成的对象中显示此属性。感谢。

class MyPictureBox : PictureBox
{
    private string name;
    private new string Name
    {
        get { return name; }
        set { name = value; }
    }
}

1 个答案:

答案 0 :(得分:1)

我相信SO在这里有答案:Hiding unwanted properties in custom controls