AvaloniaDialogs 3.5.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package AvaloniaDialogs --version 3.5.4                
NuGet\Install-Package AvaloniaDialogs -Version 3.5.4                
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.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AvaloniaDialogs --version 3.5.4                
#r "nuget: AvaloniaDialogs, 3.5.4"                
#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.4

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

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 (1)

Showing the top 1 NuGet packages that depend on AvaloniaDialogs:

Package Downloads
FrameworkOfAliveApplication.AvaloniaBase

Avalonia base library for .net8.0 and above

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.6.0 139 9/6/2024
3.5.6 250 6/14/2024
3.5.5 163 2/25/2024
3.5.4 123 1/28/2024