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

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

            card.AddContentItem(text);
        }
Exemple #2
0
        protected override void AddRightChildren()
        {
            BpText text = new BpText(Widget);

            RightColumn.AddChild(text);
            text
            .AddBold(@"CSharpWebExpress Build and Deploy")
            .AddP(@"This is a short video (3m46s) showing the addition of a new object to an existing application.")
            .AddP(@"All the coding is done using CSharp in MS Visual Studio.")
            .AddP(@"When the solution is rebuilt, all of the application's HTML5 codebase is rebuilt automatically.");
        }
Exemple #3
0
 void AddRightChild(BpElement child)
 {
     RightColumn
     .AddChild(child)
     .AddChild(new BpBr(Widget));
 }