|
|
hai 1 semana | |
|---|---|---|
| .config | hai 3 semanas | |
| .devcontainer | %!s(int64=2) %!d(string=hai) anos | |
| .github | hai 1 semana | |
| Examples | hai 1 semana | |
| Scripts | hai 3 semanas | |
| Terminal.Gui | hai 1 semana | |
| Terminal.Gui.Analyzers | hai 5 meses | |
| Terminal.Gui.Analyzers.Tests | hai 1 mes | |
| Tests | hai 1 semana | |
| docfx | hai 1 semana | |
| docs | hai 1 semana | |
| local_packages | hai 1 mes | |
| .cursorrules | hai 1 mes | |
| .dockerignore | %!s(int64=2) %!d(string=hai) anos | |
| .editorconfig | hai 1 mes | |
| .filenesting.json | hai 1 ano | |
| .gitattributes | hai 9 meses | |
| .gitignore | hai 2 semanas | |
| .vsconfig | hai 1 ano | |
| AGENTS.md | hai 1 mes | |
| CODE_OF_CONDUCT.md | %!s(int64=5) %!d(string=hai) anos | |
| CONTRIBUTING.md | hai 1 semana | |
| Directory.Build.props | hai 9 meses | |
| Directory.Packages.props | hai 1 semana | |
| GitVersion.yml | hai 6 meses | |
| LICENSE | %!s(int64=8) %!d(string=hai) anos | |
| NULLABLE_VIEWS_REMAINING.md | hai 3 semanas | |
| NoSamples.slnf | hai 6 meses | |
| PR_DESCRIPTION_UPDATED.md | hai 3 semanas | |
| README.md | hai 1 semana | |
| Release.slnf | hai 6 meses | |
| Terminal.sln | hai 1 semana | |
| Terminal.sln.DotSettings | hai 1 semana | |
| Terminal.sln.ToDo.DotSettings | hai 1 mes | |
| codecov.yml | hai 3 semanas | |
| global.json | %!s(int64=2) %!d(string=hai) anos | |
| nuget.config | hai 6 meses | |
| pull_request_template.md | hai 1 ano | |
| testenvironments.json | %!s(int64=2) %!d(string=hai) anos |
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.