Consolonia 11.2.1-alpha-678

This is a prerelease version of Consolonia.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Consolonia --version 11.2.1-alpha-678                
NuGet\Install-Package Consolonia -Version 11.2.1-alpha-678                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Consolonia" Version="11.2.1-alpha-678" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Consolonia --version 11.2.1-alpha-678                
#r "nuget: Consolonia, 11.2.1-alpha-678"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Consolonia as a Cake Addin
#addin nuget:?package=Consolonia&version=11.2.1-alpha-678&prerelease

// Install Consolonia as a Cake Tool
#tool nuget:?package=Consolonia&version=11.2.1-alpha-678&prerelease                

Consolonia

This package is meta package for building Consolonia applications.

Background

Consolonia is a TUI (Text User Interface) (GUI Framework) implementation for Avalonia UI

Supports XAML, data bindings, animation, styling and the rest from Avalonia.

Showcase (click picture to see video)

datagridpic

Usage

Define an application with a theme (See Consolonia.Themes.TurboVision for themes)

Define a Window

HelloWorldWindow.axaml

<Window xmlns="https://github.com/avaloniaui"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        x:Class="HelloWorldWindow">
    <TextBlock Text="Hello World" />
</Window>

## Define an application 
You need to define an application that defines a theme and sets the main window.

HelloWorldApp.cs
```csharp
// use HelloWorldWindow as the MainWindow for the application
public class HelloWorldApp : ConsoloniaApplication<HelloWorldWindow>
{
    public override void Initialize()
    {
        // set the theme
        Styles.Add(new MaterialTheme());
    }
}

Setup program.cs

Program.cs

[STAThread]
private static void Main(string[] args)
{
    BuildAvaloniaApp()
        .StartWithConsoleLifetime(args);
}

public static AppBuilder BuildAvaloniaApp()
    => AppBuilder.Configure<HelloWorldApp>()
        .UseConsolonia()
        .UseAutoDetectedConsole()
        .LogToException();
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Consolonia:

Package Downloads
Consolonia.Blazor

Text User Interface implementation of Avalonia UI (GUI Framework)

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Consolonia:

Repository Stars
jinek/Consolonia
A cross-platform UI framework for .NET.
Version Downloads Last updated
11.2.3-beta.860 0 2 hours ago
11.2.3-beta.849 0 a day ago
11.2.3-beta.845 0 a day ago
11.2.3-beta.841 11 a day ago
11.2.3-beta.838 46 4 days ago
11.2.3-beta.826 61 5 days ago
11.2.3-beta.819 44 5 days ago
11.2.3-beta.802 61 6 days ago
11.2.3-beta.798 33 6 days ago
11.2.3-beta.793 30 6 days ago
11.2.3-beta.789 38 6 days ago
11.2.3-beta.784 31 7 days ago
11.2.1-alpha-782 30 7 days ago
11.2.1-alpha-770 28 8 days ago
11.2.1-alpha-764 12 9 days ago
11.2.1-alpha-756 5 9 days ago
11.2.1-alpha-748 88 13 days ago
11.2.1-alpha-713 45 17 days ago
11.2.1-alpha-711 73 20 days ago
11.2.1-alpha-709 65 20 days ago
11.2.1-alpha-701 69 20 days ago
11.2.1-alpha-698 68 20 days ago
11.2.1-alpha-678 69 22 days ago
11.2.1-alpha-668 46 a month ago
11.2.1-alpha-664 42 a month ago
11.2.1-alpha-661 43 a month ago
11.2.1-alpha-652 43 a month ago
11.2.1-alpha-648 38 a month ago
11.2.1-alpha-646 38 a month ago
11.2.1-alpha-631 44 a month ago
11.2.1-alpha-626 40 a month ago
11.2.1-alpha-614 36 a month ago
11.2.1-alpha-606 315 a month ago
11.2.1-alpha-604 42 a month ago
11.2.1-alpha-598 44 a month ago
11.2.1-alpha-595 55 a month ago
11.2.1-alpha-593 40 a month ago
11.2.1-alpha-579 54 a month ago
11.2.1-alpha-577 46 a month ago
11.2.1-alpha-574 45 a month ago
11.2.1-alpha-568 44 a month ago
11.2.1-alpha-559 48 a month ago
11.2.1-alpha-547 52 a month ago
11.2.1-alpha-545 41 a month ago
11.2.1-alpha-540 42 a month ago
11.2.1-alpha-538 47 a month ago
11.2.1-alpha-523 51 a month ago
11.2.1-alpha-517 97 2 months ago