|
|
пре 1 недеља | |
|---|---|---|
| .config | пре 3 недеља | |
| .devcontainer | пре 2 година | |
| .github | пре 1 недеља | |
| Examples | пре 1 недеља | |
| Scripts | пре 3 недеља | |
| Terminal.Gui | пре 1 недеља | |
| Terminal.Gui.Analyzers | пре 5 месеци | |
| Terminal.Gui.Analyzers.Tests | пре 1 месец | |
| Tests | пре 1 недеља | |
| docfx | пре 1 недеља | |
| docs | пре 1 недеља | |
| local_packages | пре 1 месец | |
| .cursorrules | пре 1 месец | |
| .dockerignore | пре 2 година | |
| .editorconfig | пре 1 месец | |
| .filenesting.json | пре 1 година | |
| .gitattributes | пре 9 месеци | |
| .gitignore | пре 2 недеља | |
| .vsconfig | пре 1 година | |
| AGENTS.md | пре 1 месец | |
| CODE_OF_CONDUCT.md | пре 5 година | |
| CONTRIBUTING.md | пре 1 недеља | |
| Directory.Build.props | пре 9 месеци | |
| Directory.Packages.props | пре 1 недеља | |
| GitVersion.yml | пре 6 месеци | |
| LICENSE | пре 8 година | |
| NULLABLE_VIEWS_REMAINING.md | пре 3 недеља | |
| NoSamples.slnf | пре 6 месеци | |
| PR_DESCRIPTION_UPDATED.md | пре 3 недеља | |
| README.md | пре 1 недеља | |
| Release.slnf | пре 6 месеци | |
| Terminal.sln | пре 1 недеља | |
| Terminal.sln.DotSettings | пре 1 недеља | |
| Terminal.sln.ToDo.DotSettings | пре 1 месец | |
| codecov.yml | пре 3 недеља | |
| global.json | пре 2 година | |
| nuget.config | пре 6 месеци | |
| pull_request_template.md | пре 1 година | |
| testenvironments.json | пре 2 година |
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.