# Terminal.Gui v2 - What's New This document provides an in-depth overview of the new features, improvements, and architectural changes in Terminal.Gui v2 compared to v1. **For migration guidance**, see the [v1 To v2 Migration Guide](migratingfromv1.md). ## Table of Contents - [Overview](#overview) - [Architectural Overhaul](#architectural-overhaul) - [Instance-Based Application Model](#instance-based-application-model) - [IRunnable Architecture](#irunnable-architecture) - [Modern Look & Feel](#modern-look--feel) - [Simplified API](#simplified-api) - [View Improvements](#view-improvements) - [New and Improved Views](#new-and-improved-views) - [Enhanced Input Handling](#enhanced-input-handling) - [Configuration and Persistence](#configuration-and-persistence) - [Debugging and Performance](#debugging-and-performance) - [Additional Features](#additional-features) --- ## Overview Terminal.Gui v2 represents a fundamental redesign of the library's architecture, API, and capabilities. Key improvements include: - **Instance-Based Application Model** - Move from static singletons to `IApplication` instances - **IRunnable Architecture** - Interface-based pattern for type-safe, runnable views - **Proper Resource Management** - Full IDisposable pattern with automatic cleanup - **Built-in Scrolling** - Every view supports scrolling inherently - **24-bit TrueColor** - Full color spectrum by default - **Enhanced Input** - Modern keyboard and mouse APIs - **Improved Layout** - Simplified with adornments (Margin, Border, Padding) - **Better Navigation** - Decoupled focus and tab navigation - **Configuration System** - Persistent themes and settings - **Logging and Metrics** - Built-in debugging and performance tracking --- ## Architectural Overhaul ### Design Philosophy Terminal.Gui v2 was designed with these core principles: 1. **Separation of Concerns** - Layout, focus, input, and drawing are cleanly decoupled 2. **Performance** - Reduced overhead in rendering and event handling 3. **Modern .NET Practices** - Standard patterns like `EventHandler` and `IDisposable` 4. **Testability** - Views can be tested in isolation without global state 5. **Accessibility** - Improved keyboard navigation and visual feedback ### Result - Thousands of lines of redundant or complex code removed - More modular and maintainable codebase - Better performance and predictability - Easier to extend and customize --- ## Instance-Based Application Model See the [Application Deep Dive](application.md) for complete details. v2 introduces an instance-based architecture that eliminates global state and enables multiple application contexts. ### Key Features **IApplication Interface:** - `Application.Create()` returns an `IApplication` instance - Multiple applications can coexist (useful for testing) - Each instance manages its own driver, session stack, and resources **View.App Property:** - Every view has an `App` property referencing its `IApplication` context - Views access application services through `App` (driver, session management, etc.) - Eliminates static dependencies, improving testability **Session Management:** - `SessionStack` tracks all running sessions as a stack - `TopRunnable` property references the currently active session - `Begin()` and `End()` methods manage session lifecycle ### Example ```csharp // Instance-based pattern (recommended) IApplication app = Application.Create ().Init (); Window window = new () { Title = "My App" }; app.Run (window); window.Dispose (); app.Dispose (); // With using statement for automatic disposal using (IApplication app = Application.Create ().Init ()) { Window window = new () { Title = "My App" }; app.Run (window); window.Dispose (); } // app.Dispose() called automatically // Access from within a view public class MyView : View { public void DoWork () { App?.Driver.Move (0, 0); App?.TopRunnableView?.SetNeedsDraw (); } } ``` ### Benefits - **Testability** - Mock `IApplication` for unit tests - **No Global State** - Multiple contexts can coexist - **Clear Ownership** - Views explicitly know their context - **Proper Cleanup** - IDisposable ensures resources are released ### Resource Management v2 implements full `IDisposable` pattern: ```csharp // Recommended: using statement using (IApplication app = Application.Create ().Init ()) { app.Run (); MyResult? result = app.GetResult (); } // Ensures: // - Input thread stopped cleanly // - Driver resources released // - No thread leaks in tests ``` **Important Changes:** - `Shutdown()` method is obsolete - use `Dispose()` instead - Always dispose applications (especially in tests) - Input thread runs at ~50 polls/second (20ms throttle) until disposed --- ## IRunnable Architecture See the [Application Deep Dive](application.md) for complete details. v2 introduces `IRunnable` - an interface-based pattern for runnable views with type-safe results. ### Key Features **Interface-Based:** - Implement `IRunnable` without inheriting from `Runnable` - Any view can be runnable - Decouples runnability from view hierarchy **Type-Safe Results:** - Generic `TResult` parameter provides compile-time type safety - `null` indicates cancellation/non-acceptance - Results extracted before disposal in lifecycle events **Lifecycle Events (CWP-Compliant):** - `IsRunningChanging` - Cancellable, before stack change - `IsRunningChanged` - Non-cancellable, after stack change - `IsModalChanging` - Cancellable, before modal state change - `IsModalChanged` - Non-cancellable, after modal state change ### Example ```csharp public class FileDialog : Runnable { private TextField _pathField; public FileDialog () { Title = "Select File"; _pathField = new () { Width = Dim.Fill () }; Add (_pathField); Button okButton = new () { Text = "OK", IsDefault = true }; okButton.Accepting += (s, e) => { Result = _pathField.Text; Application.RequestStop (); }; AddButton (okButton); } protected override bool OnIsRunningChanging (bool oldValue, bool newValue) { if (!newValue) // Stopping - extract result before disposal { Result = _pathField?.Text; // Optionally cancel stop if (HasUnsavedChanges ()) { return true; // Cancel } } return base.OnIsRunningChanging (oldValue, newValue); } } // Use with fluent API using (IApplication app = Application.Create ().Init ()) { app.Run (); string? path = app.GetResult (); if (path is { }) { OpenFile (path); } } ``` ### Fluent API v2 enables elegant method chaining: ```csharp // Concise and readable using (IApplication app = Application.Create ().Init ()) { app.Run (); Color? result = app.GetResult (); } ``` **Key Methods:** - `Init()` - Returns `IApplication` for chaining - `Run()` - Creates and runs runnable, returns `IApplication` - `GetResult()` - Extract typed result after run - `Dispose()` - Release all resources ### Disposal Semantics **"Whoever creates it, owns it":** | Method | Creator | Owner | Disposal | |--------|---------|-------|----------| | `Run()` | Framework | Framework | Automatic when returns | | `Run(IRunnable)` | Caller | Caller | Manual by caller | ```csharp // Framework ownership - automatic disposal app.Run (); // Dialog disposed automatically // Caller ownership - manual disposal MyDialog dialog = new (); app.Run (dialog); dialog.Dispose (); // Caller must dispose ``` ### Benefits - **Type Safety** - No casting, compile-time checking - **Clean Lifecycle** - CWP-compliant events - **Automatic Disposal** - Framework manages created runnables - **Flexible** - Works with any View, not just Toplevel --- ## Modern Look & Feel ### 24-bit TrueColor Support See the [Drawing Deep Dive](drawing.md) for complete details. v2 provides full 24-bit color support by default: - **Implementation**: [Attribute](~/api/Terminal.Gui.Drawing.Attribute.yml) class handles RGB values - **Fallback**: Automatic 16-color mode for older terminals - **Driver Support**: [IConsoleDriver.SupportsTrueColor](~/api/Terminal.Gui.Drivers.IConsoleDriver.yml#Terminal_Gui_Drivers_IConsoleDriver_SupportsTrueColor) detection - **Usage**: Direct RGB input via [Color](~/api/Terminal.Gui.Drawing.Color.yml) struct ```csharp // 24-bit RGB color Color customColor = new (0xFF, 0x99, 0x00); // Or use named colors (ANSI-compliant) Color color = Color.Yellow; // Was "Brown" in v1 ``` ### Enhanced Borders and Adornments See the [Layout Deep Dive](layout.md) for complete details. v2 introduces a comprehensive [Adornment](~/api/Terminal.Gui.ViewBase.Adornment.yml) system: - **[Margin](~/api/Terminal.Gui.ViewBase.Margin.yml)** - Transparent spacing outside the border - **[Border](~/api/Terminal.Gui.ViewBase.Border.yml)** - Visual frame with title, multiple styles - **[Padding](~/api/Terminal.Gui.ViewBase.Padding.yml)** - Spacing inside the border **Border Features:** - Multiple [LineStyle](~/api/Terminal.Gui.Drawing.LineStyle.yml) options: Single, Double, Heavy, Rounded, Dashed, Dotted - Automatic line intersection handling via [LineCanvas](~/api/Terminal.Gui.Drawing.LineCanvas.yml) - Configurable thickness per side via [Thickness](~/api/Terminal.Gui.Drawing.Thickness.yml) - Title display with alignment options ```csharp view.BorderStyle = LineStyle.Double; view.Border.Thickness = new (1); view.Title = "My View"; view.Margin.Thickness = new (2); view.Padding.Thickness = new (1); ``` ### User Configurable Themes See the [Configuration Deep Dive](config.md) and [Scheme Deep Dive](scheme.md) for details. v2 adds comprehensive theme support: - **ConfigurationManager**: Loads/saves color schemes from files - **Schemes**: Applied per-view or globally via [Scheme](~/api/Terminal.Gui.Drawing.Scheme.yml) - **Text Styles**: [TextStyle](~/api/Terminal.Gui.Drawing.TextStyle.yml) supports Bold, Italic, Underline, Strikethrough, Blink, Reverse, Faint - **User Customization**: End-users can personalize without code changes ```csharp // Apply a theme ConfigurationManager.Themes.Theme = "Dark"; // Customize text style view.Scheme.Normal = new ( Color.White, Color.Black, TextStyle.Bold | TextStyle.Underline ); ``` ### LineCanvas See the [Drawing Deep Dive](drawing.md) for complete details. [LineCanvas](~/api/Terminal.Gui.Drawing.LineCanvas.yml) provides sophisticated line drawing: - Auto-joining lines at intersections - Multiple line styles (Single, Double, Heavy, etc.) - Automatic glyph selection for corners and T-junctions - Used by [Border](~/api/Terminal.Gui.ViewBase.Border.yml), [Line](~/api/Terminal.Gui.Views.Line.yml), and custom views ```csharp // Line view uses LineCanvas Line line = new () { Orientation = Orientation.Horizontal }; line.LineStyle = LineStyle.Double; ``` ### Gradients See the [Drawing Deep Dive](drawing.md) for details. v2 adds gradient support: - [Gradient](~/api/Terminal.Gui.Drawing.Gradient.yml) - Color transitions - [GradientFill](~/api/Terminal.Gui.Drawing.GradientFill.yml) - Fill patterns - Uses TrueColor for smooth effects - Apply to borders, backgrounds, or custom elements ```csharp Gradient gradient = new (Color.Blue, Color.Cyan); view.BackgroundGradient = new (gradient, Orientation.Vertical); ``` --- ## Simplified API ### Consistency and Reduction v2 consolidates redundant APIs: - **Centralized Navigation**: [ApplicationNavigation](~/api/Terminal.Gui.App.ApplicationNavigation.yml) replaces scattered focus methods - **Standard Events**: All events use `EventHandler` pattern - **Consistent Naming**: Methods follow .NET conventions (e.g., `OnHasFocusChanged`) - **Reduced Surface**: Fewer but more powerful APIs **Example:** ```csharp // v1 - Multiple scattered methods View.MostFocused View.EnsureFocus () View.FocusNext () // v2 - Centralized Application.Navigation.GetFocused () view.SetFocus () view.AdvanceFocus () ``` ### Modern .NET Standards - Events: `EventHandler` instead of custom delegates - Properties: Consistent get/set patterns - Disposal: IDisposable throughout - Nullability: Enabled in core library files ### Performance Optimizations v2 reduces overhead through: - Smarter `NeedsDraw` system (only draw what changed) - Reduced allocations in hot paths (event handling, rendering) - Optimized layout calculations - Efficient input processing **Result**: Snappier UIs, especially with many views or frequent updates --- ## View Improvements ### Deterministic Lifetime Management v2 clarifies view ownership: - Explicit disposal rules enforced by unit tests - `Application.Run` manages `Runnable` lifecycle - SubViews disposed automatically with SuperView - Clear documentation of ownership semantics ### Built-in Scrolling See the [Scrolling Deep Dive](scrolling.md) for complete details. Every [View](~/api/Terminal.Gui.ViewBase.View.yml) supports scrolling inherently: - **[Viewport](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_Viewport)** - Visible rectangle (can have non-zero location) - **[GetContentSize](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_GetContentSize)** - Returns total content size - **[SetContentSize](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_SetContentSize_System_Nullable_System_Drawing_Size__)** - Sets scrollable content size - **ScrollVertical/ScrollHorizontal** - Helper methods **No need for ScrollView wrapper!** ```csharp // Enable scrolling view.SetContentSize (new (100, 100)); // Scroll by changing Viewport location view.ScrollVertical (5); view.ScrollHorizontal (3); // Built-in scrollbars view.VerticalScrollBar.Visible = true; view.HorizontalScrollBar.Visible = true; view.VerticalScrollBar.AutoShow = true; ``` ### Enhanced ScrollBar v2 replaces `ScrollBarView` with [ScrollBar](~/api/Terminal.Gui.Views.ScrollBar.yml): - Cleaner implementation - Automatic show/hide - Proportional sizing with `ScrollSlider` - Integrated with View's scrolling system - Simple to add via [View.VerticalScrollBar](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_VerticalScrollBar) / [View.HorizontalScrollBar](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_HorizontalScrollBar) ### Advanced Layout Features See the [Layout Deep Dive](layout.md) and [DimAuto Deep Dive](dimauto.md) for details. **[Dim.Auto](~/api/Terminal.Gui.Dim.yml#Terminal_Gui_Dim_Auto_Terminal_Gui_DimAutoStyle_Terminal_Gui_Dim_Terminal_Gui_Dim_):** - Automatically sizes views based on content or subviews - Reduces manual layout calculations - Supports multiple styles (Text, Content, Position) **[Pos.AnchorEnd](~/api/Terminal.Gui.Pos.yml#Terminal_Gui_Pos_AnchorEnd_System_Int32_):** - Anchor to right or bottom of SuperView - Enables flexible, responsive layouts **[Pos.Align](~/api/Terminal.Gui.Pos.yml):** - Align multiple views (Left, Center, Right) - Simplifies creating aligned layouts ```csharp // Auto-size based on text label.Width = Dim.Auto (); label.Height = Dim.Auto (); // Anchor to bottom-right button.X = Pos.AnchorEnd (10); button.Y = Pos.AnchorEnd (2); // Center align label1.X = Pos.Center (); label2.X = Pos.Center (); ``` ### View Arrangement See the [Arrangement Deep Dive](arrangement.md) for complete details. [View.Arrangement](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_Arrangement) enables interactive UI: - **[ViewArrangement.Movable](~/api/Terminal.Gui.ViewBase.ViewArrangement.yml)** - Drag with mouse or move with keyboard - **[ViewArrangement.Resizable](~/api/Terminal.Gui.ViewBase.ViewArrangement.yml)** - Resize edges with mouse or keyboard - **[ViewArrangement.Overlapped](~/api/Terminal.Gui.ViewBase.ViewArrangement.yml)** - Z-order management for overlapping views **Arrangement Key**: Press `Ctrl+F5` (configurable via [Application.ArrangeKey](~/api/Terminal.Gui.App.Application.yml#Terminal_Gui_App_Application_ArrangeKey)) to enter arrange mode ```csharp // Movable and resizable window window.Arrangement = ViewArrangement.Movable | ViewArrangement.Resizable; // Overlapped windows container.Arrangement = ViewArrangement.Overlapped; ``` ### Enhanced Navigation See the [Navigation Deep Dive](navigation.md) for complete details. v2 decouples navigation concepts: - **[CanFocus](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_CanFocus)** - Whether view can receive focus (defaults to `false` in v2) - **[TabStop](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_TabStop)** - [TabBehavior](~/api/Terminal.Gui.Input.TabBehavior.yml) enum (TabStop, TabGroup, NoStop) - **[ApplicationNavigation](~/api/Terminal.Gui.App.ApplicationNavigation.yml)** - Centralized navigation logic **Navigation Keys (Configurable):** - `Tab` / `Shift+Tab` - Next/previous TabStop - `F6` / `Shift+F6` - Next/previous TabGroup - Arrow keys - Same as Tab navigation ```csharp // Configure navigation keys Application.NextTabStopKey = Key.Tab; Application.PrevTabStopKey = Key.Tab.WithShift; Application.NextTabGroupKey = Key.F6; Application.PrevTabGroupKey = Key.F6.WithShift; // Set tab behavior view.CanFocus = true; view.TabStop = TabBehavior.TabStop; // Normal tab navigation ``` --- ## New and Improved Views See the [Views Overview](views.md) for a complete catalog. ### New Views in v2 - **[Bar](~/api/Terminal.Gui.Views.Bar.yml)** - Foundation for StatusBar, MenuBar, PopoverMenu - **[CharMap](~/api/Terminal.Gui.Views.CharMap.yml)** - Scrollable Unicode character map with UCD support - **[ColorPicker](~/api/Terminal.Gui.Views.ColorPicker.yml)** - TrueColor selection with multiple color models - **[DatePicker](~/api/Terminal.Gui.Views.DatePicker.yml)** - Calendar-based date selection - **[FlagSelector](~/api/Terminal.Gui.Views.FlagSelector.yml)** - Non-mutually-exclusive flag selection - **[GraphView](~/api/Terminal.Gui.Views.GraphView.yml)** - Data visualization (bar, scatter, line graphs) - **[Line](~/api/Terminal.Gui.Views.Line.yml)** - Single lines with LineCanvas integration - **[NumericUpDown](~/api/Terminal.Gui.Views.NumericUpDown-1.yml)** - Type-safe numeric input - **[OptionSelector](~/api/Terminal.Gui.Views.OptionSelector.yml)** - Mutually-exclusive option selection - **[Shortcut](~/api/Terminal.Gui.Views.Shortcut.yml)** - Command display with key bindings - **[Slider](~/api/Terminal.Gui.Views.Slider.yml)** - Sophisticated range selection control - **[SpinnerView](~/api/Terminal.Gui.Views.SpinnerView.yml)** - Animated progress indicators ### Significantly Improved Views - **[FileDialog](~/api/Terminal.Gui.Views.FileDialog.yml)** - TreeView navigation, Unicode icons, search, history - **[ScrollBar](~/api/Terminal.Gui.Views.ScrollBar.yml)** - Clean implementation with auto-show - **[StatusBar](~/api/Terminal.Gui.Views.StatusBar.yml)** - Rebuilt on Bar infrastructure - **[TableView](~/api/Terminal.Gui.Views.TableView.yml)** - Generic collections, checkboxes, tree structures, custom rendering - **[MenuBar](~/api/Terminal.Gui.Views.MenuBar.yml)** / **[PopoverMenu](~/api/Terminal.Gui.Views.PopoverMenu.yml)** - Redesigned menu system --- ## Enhanced Input Handling ### Keyboard API See the [Keyboard Deep Dive](keyboard.md) and [Command Deep Dive](command.md) for details. **[Key](~/api/Terminal.Gui.Input.Key.yml) Class:** - Replaces v1's `KeyEvent` struct - High-level abstraction over raw key codes - Properties for modifiers and key type - Platform-independent ```csharp // Check keys if (key == Key.Enter) { } if (key == Key.C.WithCtrl) { } // Modifiers if (key.Shift) { } if (key.Ctrl) { } ``` **Key Bindings:** - Map keys to [Command](~/api/Terminal.Gui.Input.Command.yml) enums - Scopes: Application, Focused, HotKey - Views declare supported commands via [View.AddCommand](~/api/Terminal.Gui.ViewBase.View.yml) ```csharp // Add command handler view.AddCommand (Command.Accept, HandleAccept); // Bind key to command view.KeyBindings.Add (Key.Enter, Command.Accept); private bool HandleAccept () { // Handle command return true; // Handled } ``` **Configurable Keys:** - [Application.QuitKey](~/api/Terminal.Gui.App.Application.yml#Terminal_Gui_App_Application_QuitKey) - Close app (default: Esc) - [Application.ArrangeKey](~/api/Terminal.Gui.App.Application.yml#Terminal_Gui_App_Application_ArrangeKey) - Arrange mode (default: Ctrl+F5) - Navigation keys (Tab, F6, arrows) ### Mouse API See the [Mouse Deep Dive](mouse.md) for complete details. **[MouseEventArgs](~/api/Terminal.Gui.Input.MouseEventArgs.yml):** - Replaces v1's `MouseEventEventArgs` - Cleaner structure for mouse data - [MouseFlags](~/api/Terminal.Gui.Input.MouseFlags.yml) for button states **Granular Events:** - [View.MouseClick](~/api/Terminal.Gui.ViewBase.View.yml) - High-level click events - Double-click support - Mouse movement tracking - Viewport-relative coordinates (not screen-relative) **Highlight and Continuous Presses:** - [View.Highlight](~/api/Terminal.Gui.ViewBase.View.yml) - Visual feedback on hover/click - [View.HighlightStyle](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_HighlightStyle) - Configure highlight appearance - [View.WantContinuousButtonPresses](~/api/Terminal.Gui.ViewBase.View.yml#Terminal_Gui_ViewBase_View_WantContinuousButtonPresses) - Repeat [Command.Accept](~/api/Terminal.Gui.Input.Command.yml) during button hold ```csharp // Highlight on hover view.Highlight += (s, e) => { /* Visual feedback */ }; view.HighlightStyle = HighlightStyle.Hover; // Continuous button presses view.WantContinuousButtonPresses = true; ``` --- ## Configuration and Persistence See the [Configuration Deep Dive](config.md) for complete details. ### ConfigurationManager [ConfigurationManager](~/api/Terminal.Gui.Configuration.ConfigurationManager.yml) provides: - JSON-based persistence - Theme management - Key binding customization - View property persistence - [SettingsScope](~/api/Terminal.Gui.Configuration.SettingsScope.yml) - User, Application, Machine levels - [ConfigLocations](~/api/Terminal.Gui.Configuration.ConfigLocations.yml) - Where to search for configs ```csharp // Enable configuration ConfigurationManager.Enable (ConfigLocations.All); // Load a theme ConfigurationManager.Themes.Theme = "Dark"; // Save current configuration ConfigurationManager.Save (); ``` **User Customization:** - End-users can personalize themes, colors, text styles - Key bindings can be remapped - No code changes required - JSON files easily editable --- ## Debugging and Performance See the [Logging Deep Dive](logging.md) for complete details. ### Logging System [Logging](~/api/Terminal.Gui.App.Logging.yml) integrates with Microsoft.Extensions.Logging: - Multi-level logging (Trace, Debug, Info, Warning, Error) - Internal operation tracking (rendering, input, layout) - Works with standard .NET logging frameworks (Serilog, NLog, etc.) ```csharp // Configure logging Logging.ConfigureLogging ("myapp.log", LogLevel.Debug); // Use in code Logging.Debug ("Rendering view {ViewId}", view.Id); ``` ### Metrics [Logging.Meter](~/api/Terminal.Gui.App.Logging.yml#Terminal_Gui_App_Logging_Meter) provides performance metrics: - Frame rate tracking - Redraw times - Iteration timing - Input processing overhead **Tools**: Use `dotnet-counters` or other metrics tools to monitor ```bash dotnet counters monitor --name MyApp Terminal.Gui ``` --- ## Additional Features ### Sixel Image Support v2 supports the Sixel protocol for rendering images: - [SixelEncoder](~/api/Terminal.Gui.Drawing.SixelEncoder.yml) - Encode images as Sixel data - [SixelSupportDetector](~/api/Terminal.Gui.Drawing.SixelSupportDetector.yml) - Detect terminal support - [SixelToRender](~/api/Terminal.Gui.Drawing.SixelToRender.yml) - Render Sixel images - Compatible terminals: Windows Terminal, xterm, others **Use Cases**: Image previews, graphics in terminal apps ### AOT Support v2 ensures compatibility with Ahead-of-Time compilation: - Avoid reflection patterns problematic for AOT - Source generators for JSON serialization via [SourceGenerationContext](~/api/Terminal.Gui.Configuration.SourceGenerationContext.yml) - Single-file deployment support - Faster startup, reduced runtime overhead **Example**: See `Examples/NativeAot` for AOT deployment ### Enhanced Unicode Support - Correctly manages wide characters (CJK scripts) - [TextFormatter](~/api/Terminal.Gui.Text.TextFormatter.yml) accounts for Unicode width - Fixes v1 layout issues with wide characters - International application support --- ## Conclusion Terminal.Gui v2 represents a comprehensive modernization: **Architecture:** - Instance-based application model - IRunnable architecture with type-safe results - Proper resource management (IDisposable) - Decoupled concerns (layout, focus, input) **Features:** - 24-bit TrueColor - Built-in scrolling - Enhanced adornments (Margin, Border, Padding) - Modern keyboard and mouse APIs - Configuration and themes - Logging and metrics **API:** - Simplified and consistent - Modern .NET patterns - Better performance - Improved testability **Views:** - Many new views (CharMap, ColorPicker, GraphView, etc.) - Significantly improved existing views - Easier to create custom views v2 provides a robust foundation for building sophisticated, maintainable, and user-friendly terminal applications. The architectural improvements, combined with new features and enhanced APIs, enable developers to create modern terminal UIs that feel responsive and polished. For detailed migration guidance, see the [v1 To v2 Migration Guide](migratingfromv1.md).