2011-11-09 66 views

回答

0

您可以將內部控件公開爲您的自定義控件的公共屬性。

例如:

public class MyCustomControl : CustomControl 
{ 
    Label _label; 

    // initialize _label in OnInit() ... 

    public string LabelText { get { return _label.Text; } set { _label.Text = value; } } 
} 
+0

那麼我怎麼才能像inputfield.Value? – jsmith

相關問題