Show / Hide Table of Contents

Install

Package Manager:

PM> Install-Package Twidgets

>> See more installation options


Quick Start

Example: Drawing a simple marquee presentation.

using Twidgets;

class Program
{
    static void Main(string[] args){
        var twidget=new Marquee("demo");

        twidget.Items = new string[] {
            "Welcome to Twidgets",
            "<Get Started>"
        };
        
        TWidgetPlayer.Mount(twidget);
    }
}

Output:

┌─────────────────────────────┐
│     Welcome to TWidgets     │
│        <Get Started>        │
└─────────────────────────────┘

>> See more at documentation.

  • Improve this Doc
In This Article
Back to top Generated by DocFX