2014-02-09 128 views
0

當屬性爲public時,我可以覆蓋Name屬性,但當我將它設置爲private時,它繼承Picturebox的名稱。我想將它設置爲私有的,因爲我不希望該屬性顯示在從MyPictureBox類生成的對象中。謝謝。隱藏PictureBox的屬性

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

不,它不會引發錯誤。例如,當我從MyPictureBox創建一個對象時,我仍然可以使用myPictureBox.Name。我不希望它出現。 – Cem

回答