コード例 #1
0
        void AddDownloadLink(string url, string text)
        {
            var bptext = new BpText(Widget);

            bptext.AddLink(url, text);
            AddContentItem(bptext);
        }
コード例 #2
0
        protected override void AddRightChildren()
        {
            BpCard card = new BpCard(@"News", Widget);

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

            card.AddContentItem(text);
        }
コード例 #3
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.");
        }
コード例 #4
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);
        }
コード例 #5
0
        public HomePageLeftInfoCard(IWidget widget) : base(title, widget)
        {
            BpText text = new BpText(Widget);

            text
            .AddP(@"CSharpWebExpress is a technology for building sophisticated Web applications using only the CSharp programming language.")
            .AddP(@"There is no need to use HTML, CSS, or JavaScript although code snippets may be included when appropriate.")
            .AddP(@"The navigation buttons at the left select display panels in this center content area. At the top is a Mode select button which shows either ""Website Mode"" or ""Desktop Mode"" - you can toggle the mode by clicking.")
            .AddP(@"Desktop mode uses windows which are similar to desktop GUI's. The ""Views"" selection button at the top opens new windows. See the brief video below for a demonstration.")
            .AddP(@"This site was created using Microsoft's Visual Studio 2017 Community Edition with all coding for the application done in CSharp. The total development time (single developer) for the demo application was about two days including server deployment (Ruby-on-Rails) to Heroku.")
            .AddP(@"Thank you for visiting the demo site.")
            .AddP(@"-- Peter Fisk, creator of CSharpWebExpress");
            AddContentItem(text);
        }