|
|
vor 4 Tagen | |
|---|---|---|
| .config | vor 3 Wochen | |
| .devcontainer | vor 2 Jahren | |
| .github | vor 1 Woche | |
| Examples | vor 4 Tagen | |
| Scripts | vor 3 Wochen | |
| Terminal.Gui | vor 4 Tagen | |
| Terminal.Gui.Analyzers | vor 5 Monaten | |
| Terminal.Gui.Analyzers.Tests | vor 1 Monat | |
| Tests | vor 4 Tagen | |
| docfx | vor 4 Tagen | |
| local_packages | vor 1 Monat | |
| .cursorrules | vor 1 Monat | |
| .dockerignore | vor 2 Jahren | |
| .editorconfig | vor 1 Monat | |
| .filenesting.json | vor 1 Jahr | |
| .gitattributes | vor 9 Monaten | |
| .gitignore | vor 2 Wochen | |
| .vsconfig | vor 1 Jahr | |
| AGENTS.md | vor 1 Monat | |
| CODE_OF_CONDUCT.md | vor 5 Jahren | |
| CONTRIBUTING.md | vor 1 Woche | |
| Directory.Build.props | vor 9 Monaten | |
| Directory.Packages.props | vor 3 Wochen | |
| GitVersion.yml | vor 6 Monaten | |
| LICENSE | vor 8 Jahren | |
| NULLABLE_VIEWS_REMAINING.md | vor 3 Wochen | |
| NoSamples.slnf | vor 6 Monaten | |
| PR_DESCRIPTION_UPDATED.md | vor 3 Wochen | |
| README.md | vor 1 Woche | |
| Release.slnf | vor 6 Monaten | |
| Terminal.sln | vor 1 Woche | |
| Terminal.sln.DotSettings | vor 1 Woche | |
| Terminal.sln.ToDo.DotSettings | vor 1 Monat | |
| codecov.yml | vor 3 Wochen | |
| global.json | vor 2 Jahren | |
| nuget.config | vor 6 Monaten | |
| pull_request_template.md | vor 1 Jahr | |
| testenvironments.json | vor 2 Jahren |
Cross-platform UI toolkit for building sophisticated terminal UI (TUI) applications on Windows, macOS, and Linux/Unix.
Important:
- v1 is in maintenance mode - only critical bug fixes accepted
- v2 Alpha is recommended for new projects - API is stable with comprehensive features
- Breaking changes possible before Beta, but core architecture is solid
Install the Terminal.Gui.Templates, create a new TUI app, and run it:
dotnet new --install Terminal.Gui.templates
dotnet new tui -n myproj
cd myproj
dotnet run
Press Esc to exit (the default QuitKey).
Run the comprehensive UI Catalog demo to explore all controls:
dotnet run --project Examples/UICatalog/UICatalog.csproj
using Terminal.Gui;
using IApplication app = Application.Create ();
app.Init ();
using Window window = new () { Title = "Hello World (Esc to quit)" };
Label label = new ()
{
Text = "Hello, Terminal.Gui v2!",
X = Pos.Center (),
Y = Pos.Center ()
};
window.Add (label);
app.Run (window);
See the Examples directory for more.
Terminal.Gui enables building sophisticated console applications with modern UIs:
See the Views Overview for available controls and What's New in v2 for architectural improvements.
Comprehensive documentation is at gui-cs.github.io/Terminal.Gui.
See the documentation index for all topics.
dotnet add package Terminal.Gui --version "2.0.0-alpha.*"
dotnet add package Terminal.Gui --version "2.0.0-develop.*"
dotnet add package Terminal.Gui --version "1.*"
Or use the Terminal.Gui.Templates.
Contributions welcome! See CONTRIBUTING.md.
See gui-cs for project history and origins.