AvaloniaDialogs 3.5.5

dotnet add package AvaloniaDialogs --version 3.5.5
NuGet\Install-Package AvaloniaDialogs -Version 3.5.5
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="AvaloniaDialogs" Version="3.5.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AvaloniaDialogs --version 3.5.5
#r "nuget: AvaloniaDialogs, 3.5.5"
#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 AvaloniaDialogs as a Cake Addin
#addin nuget:?package=AvaloniaDialogs&version=3.5.5

// Install AvaloniaDialogs as a Cake Tool
#tool nuget:?package=AvaloniaDialogs&version=3.5.5

AvaloniaDialogs

This library wraps DialogHost.Avalonia, providing a more convenient API and built-in common dialogs such as a Yes/No popup and a snackbar.

Quick Start

  1. Add the DialogHost styles to your App.axaml:
<Application xmlns:dialogHostAvalonia="using:DialogHostAvalonia">
  

  <Application.Styles>
    <dialogHostAvalonia:DialogHostStyles/>
  </Application.Styles>

  
</Application>
  1. Add a dialog host to your window:
<Window xmlns:dialogs="using:AvaloniaDialogs.Views">
  

  <dialogs:ReactiveDialogHost CloseOnClickAway="True">
    
  </dialogs:ReactiveDialogHost >
</Window>
  1. Spawn dialogs whenever you want!
SingleActionDialog dialog = new() {
    Message = "Hello from C# code!",
    ButtonText = "Click me!"
};
await dialog.ShowAsync();

Browse the AvaloniaDialogs.Demo project for an example that includes styling.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.5.5 115 2/25/2024
3.5.4 112 1/28/2024