ConsoleMenu-simple
2.1.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ConsoleMenu-simple --version 2.1.3
NuGet\Install-Package ConsoleMenu-simple -Version 2.1.3
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="ConsoleMenu-simple" Version="2.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ConsoleMenu-simple --version 2.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ConsoleMenu-simple, 2.1.3"
#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 ConsoleMenu-simple as a Cake Addin #addin nuget:?package=ConsoleMenu-simple&version=2.1.3 // Install ConsoleMenu-simple as a Cake Tool #tool nuget:?package=ConsoleMenu-simple&version=2.1.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ConsoleMenu
A simple, highly customizable, DOS-like console menu
Nuget package: https://www.nuget.org/packages/ConsoleMenu-simple
Usage
var subMenu = new ConsoleMenu()
.Add("Sub_One", () => SomeAction("Sub_One"))
.Add("Sub_Two", () => SomeAction("Sub_Two"))
.Add("Sub_Three", () => SomeAction("Sub_Three"))
.Add("Sub_Four", () => SomeAction("Sub_Four"))
.Add("Sub_Close", ConsoleMenu.Close)
.Add("Sub_Exit", () => Environment.Exit(0));
var menu = new ConsoleMenu()
.Add("One", () => SomeAction("One"))
.Add("Two", () => SomeAction("Two"))
.Add("Three", () => SomeAction("Three"))
.Add("Sub", subMenu.Show)
.Add("Close", ConsoleMenu.Close)
.Add("Exit", () => Environment.Exit(0))
.Configure(config => { config.Selector = "--> "; });
menu.Show();
Configuration
You can also define configuration via .Configure() method. The default config looks like:
public class MenuConfig
{
public ConsoleColor SelectedItemBackgroundColor = Console.ForegroundColor;
public ConsoleColor SelectedItemForegroundColor = Console.BackgroundColor;
public ConsoleColor ItemBackgroundColor = Console.BackgroundColor;
public ConsoleColor ItemForegroundColor = Console.ForegroundColor;
public Action WriteHeaderAction = () => Console.WriteLine("Pick an option:");
public Action<MenuItem> WriteItemAction = item => Console.Write("[{0}] {1}", item.Index, item.Name);
public string Selector = ">> ";
public string FilterPrompt = "Filter: ";
public bool ClearConsole = true;
public bool EnableFilter = false;
}
Example:
new ConsoleMenu()
.Add("One", () => SomeAction("One"))
.Add("Two", () => SomeAction("Two"))
.Add("Close", ConsoleMenu.Close)
.Configure(config => { config.Selector = "--> "; })
.Show();
Requirements
Framework compatible with .NET Standard 1.3 (.NET Core 1.0, .NET Framework 4.6, Mono 4.6) or higher.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on ConsoleMenu-simple:
Package | Downloads |
---|---|
Anixe.QualityTools
Additional tools for testing software |
|
slacker_HostedConsole
Package Description |
|
Dorbit.Framework
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on ConsoleMenu-simple:
Repository | Stars |
---|---|
mattpannella/pupdate
Pupdate - A thing for updating your Analogue Pocket
|
|
RetroDriven/Pocket_Updater
Windows GUI Application to Update Cores for the Analogue Pocket
|
Version | Downloads | Last updated |
---|---|---|
2.7.0 | 28,872 | 4/14/2024 |
2.6.1 | 25,126 | 9/2/2023 |
2.6.0 | 36,500 | 2/17/2023 |
2.4.3 | 43,292 | 3/3/2022 |
2.4.2 | 4,081 | 1/9/2022 |
2.4.1 | 6,097 | 10/20/2021 |
2.4.0 | 53,089 | 9/2/2019 |
2.3.1 | 654 | 8/26/2019 |
2.3.0 | 596 | 8/26/2019 |
2.2.1 | 4,046 | 11/22/2018 |
2.2.0 | 1,796 | 11/20/2018 |
2.1.4 | 794 | 11/15/2018 |
2.1.3 | 830 | 11/12/2018 |
2.1.2 | 907 | 11/7/2018 |
2.1.1 | 1,559 | 5/28/2018 |
2.1.0 | 1,038 | 5/28/2018 |
2.0.0 | 1,002 | 5/15/2018 |
1.0.0 | 1,118 | 5/12/2018 |
- fixed bugs with navigation when using control keys