ConsoleButtons 2.4.0

dotnet add package ConsoleButtons --version 2.4.0
                    
NuGet\Install-Package ConsoleButtons -Version 2.4.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ConsoleButtons" Version="2.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ConsoleButtons" Version="2.4.0" />
                    
Directory.Packages.props
<PackageReference Include="ConsoleButtons" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ConsoleButtons --version 2.4.0
                    
#r "nuget: ConsoleButtons, 2.4.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=ConsoleButtons&version=2.4.0
                    
Install ConsoleButtons as a Cake Addin
#tool nuget:?package=ConsoleButtons&version=2.4.0
                    
Install ConsoleButtons as a Cake Tool

Console Buttons

Clickable UI for C# Console

Buttons, checkboxes, sliders and more!

Example Usage:

static void Main(string[] args)
{
    UIManager manager = new UIManager();
    
    manager.Initialize();
    
    //Button constructor that auto detects the COLLIDER WIDTH based on how many characters there are on the text.
    Button button = new Button("Sign Up", 0, 0);
    button.OnHoverOver += () => { button.WriteWithColor(Color.Gray); };
    button.OnHoverStop += () => { button.WriteWithNoColor(); };
    button.OnClick += () => { button.WriteWithColor(Color.Red); Thread.Sleep(50); };
    button.OnHold += () => { button.WriteWithColor(Color.Red); };

    //Checkbox constructor order (text string, marked checkbox char, is initialized as checked, collide with text, X and Y)
    CheckBox checkBox = new CheckBox("Checkbox", 'X', false, true, 0, 0);
    checkBox.OnHoverOver += () => { checkBox.WriteWithColor(Color.Gray); };
    checkBox.OnHoverStop += () => { checkBox.WriteWithNoColor(); };
    checkBox.OnClick += () => { checkBox.WriteWithColor(Color.Cyan); Thread.Sleep(50); };
    checkBox.OnHold += () => { checkBox.WriteWithColor(Color.Red); };

    //Slider constructor order (initial value, max value, slider size, convert to int, filled char, unfilled char, X and Y)
    Slider slider = new Slider(0, 10, 10, false, '█', ' ', 5,5);
    slider.OnHoverOver += () => { slider.WriteWithColor(Color.Gray); };
    slider.OnHoverStop += () => { slider.WriteWithNoColor(); };
    slider.OnHold += () => { slider.WriteWithColor(Color.Red); Console.Write(slider.Value, Color.Aqua); };

    manager.AddToComponents(button);
    manager.AddToComponents(checkBox);
    manager.AddToComponents(slider);

    while (true)
    {
        manager.Update();
    }

    Console.ReadKey();
}
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.4.0 497 12/24/2021
2.3.0 386 10/2/2021
2.2.5 334 9/28/2021
2.2.3 369 9/28/2021
2.2.2 369 9/28/2021
2.0.0 501 9/27/2021 2.0.0 is deprecated because it is no longer maintained.

Rewrote code and changed some names