|
|
há 1 dia atrás | |
|---|---|---|
| .config | há 3 semanas atrás | |
| .devcontainer | há 2 anos atrás | |
| .github | há 1 semana atrás | |
| Examples | há 4 dias atrás | |
| Scripts | há 3 semanas atrás | |
| Terminal.Gui | há 1 dia atrás | |
| Terminal.Gui.Analyzers | há 5 meses atrás | |
| Terminal.Gui.Analyzers.Tests | há 1 mês atrás | |
| Tests | há 1 dia atrás | |
| docfx | há 4 dias atrás | |
| local_packages | há 1 mês atrás | |
| .cursorrules | há 1 mês atrás | |
| .dockerignore | há 2 anos atrás | |
| .editorconfig | há 1 mês atrás | |
| .filenesting.json | há 1 ano atrás | |
| .gitattributes | há 9 meses atrás | |
| .gitignore | há 2 semanas atrás | |
| .vsconfig | há 1 ano atrás | |
| AGENTS.md | há 1 mês atrás | |
| CODE_OF_CONDUCT.md | há 5 anos atrás | |
| CONTRIBUTING.md | há 1 semana atrás | |
| Directory.Build.props | há 9 meses atrás | |
| Directory.Packages.props | há 3 semanas atrás | |
| GitVersion.yml | há 6 meses atrás | |
| LICENSE | há 8 anos atrás | |
| NULLABLE_VIEWS_REMAINING.md | há 3 semanas atrás | |
| NoSamples.slnf | há 6 meses atrás | |
| PR_DESCRIPTION_UPDATED.md | há 3 semanas atrás | |
| README.md | há 1 semana atrás | |
| Release.slnf | há 6 meses atrás | |
| Terminal.sln | há 1 semana atrás | |
| Terminal.sln.DotSettings | há 1 dia atrás | |
| Terminal.sln.ToDo.DotSettings | há 1 mês atrás | |
| codecov.yml | há 3 semanas atrás | |
| global.json | há 2 anos atrás | |
| nuget.config | há 6 meses atrás | |
| pull_request_template.md | há 1 ano atrás | |
| testenvironments.json | há 2 anos atrás |
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.