2013-05-17 53 views
0

我得到一個UserControl名稱UC1,其中包含2個控件(文本框,標籤)。之後,我創建新窗口窗體並將UC1拖動到它,如何在設計模式下的「屬性窗口」中讀取和寫入文本框和標籤(UC1內部)的所有屬性?目前,我只能看到UC1的屬性,但是文本框和標籤的屬性從不顯示出來。請...感謝..UserControl - 在設計模式屬性窗口中顯示內部控制的屬性窗口

說明:暫無想例如控件的屬性1創建1:公共覆蓋物業布拉布拉作爲字符串......高端物業

在control.cs

回答

1

[Description("Label displayed in the Control"), Category("Controls")] 
    public Label lblCaption 
    { 
     get { return _lblCaption; } 
     set { _lblCaption = value; } 
    } 

在control.Designer.cs

public System.Windows.Forms.Label _lblCaption; 

的按鈕

做到這一點