ConsoleButtons 2.2.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ConsoleButtons --version 2.2.2
NuGet\Install-Package ConsoleButtons -Version 2.2.2
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.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ConsoleButtons --version 2.2.2
#r "nuget: ConsoleButtons, 2.2.2"
#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.
// Install ConsoleButtons as a Cake Addin
#addin nuget:?package=ConsoleButtons&version=2.2.2

// Install ConsoleButtons as a Cake Tool
#tool nuget:?package=ConsoleButtons&version=2.2.2

Console Buttons

Currently implemented: buttons and checkboxes, each one with events.
New: Checkboxes and proper mouse events (Hold, Click)

Warning: Console Buttons only work on build versions, it won't work inside Visual Studio/Rider!!!

Example usage:

static void Main(string[] args)
{ 
  ConsoleClick consoleClick = new ConsoleClick();

  bool initialized = false;
  //Main program loop for buttons (logic, etc)
  while (true)
  {
    //Update
    consoleClick.Update();
  
    //Initialization
    if (initialized)
      continue;
  
    //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, consoleClick.WindowRect);
    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(text, 'X', false, true, 0, 0, consoleClick.WindowRect);
    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); };
  
    //Necessary to add the button to the update list.
    consoleClick.AddToComponents(checkBox);
    consoleClick.AddToComponents(button);
    
    initialized = true;
  }

  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.

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 414 12/24/2021
2.3.0 340 10/2/2021
2.2.5 291 9/28/2021
2.2.3 330 9/28/2021
2.2.2 327 9/28/2021
2.0.0 438 9/27/2021

Added Checkboxes and proper mouse events!