protected override void AddRightChildren() { BpCard card = new BpCard(@"News", Widget); RightColumn.AddChild(card); BpText text = new BpText(Widget); card.AddContentItem(text); }
protected override void AddLeftChildren() { BpCard card = new BpCard(@"CSharpWebExpress", Widget); LeftColumn.AddChild(card); BpText text = new BpText(Widget); text .AddP(@"CSharpWebExpress is an exciting new technology that allows building sophisticated Web application using only CSharp programming."); card.AddContentItem(text); }