示例#1
0
        protected override void AddRightChildren()
        {
            BpCard card = new BpCard(@"News", Widget);

            RightColumn.AddChild(card);
            BpText text = new BpText(Widget);

            card.AddContentItem(text);
        }
示例#2
0
        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);
        }