, ( ), , , , .
1) , , , UserControl. , usercontrol , . , , , , .
public abstract class MyUserControl: UserControl
{
public Chart Chart1;
public void ToggleLegend()
{
Chart1.Legends[0].Enabled = !Chart1.Legends[0].Enabled;
}
public override void CreateChildControls()
{
Controls.Add(Page.LoadControl("path/to/mymarkup/control"));
BuildBaseControls();
}
}
2) UserControl, MyUserControl UserControl,
public partial class HistoricalLineChart : MyUserControl
{
public HistoricalLineChart(int reportID)
: base()
{
Chart1.Titles[0].Text = "Hello World";
}
}
, , , . , , UserControl ( ), WebControl ( ), , .