DialogHost.Avalonia 0.7.7

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package DialogHost.Avalonia --version 0.7.7
NuGet\Install-Package DialogHost.Avalonia -Version 0.7.7
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="DialogHost.Avalonia" Version="0.7.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DialogHost.Avalonia --version 0.7.7
#r "nuget: DialogHost.Avalonia, 0.7.7"
#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 DialogHost.Avalonia as a Cake Addin
#addin nuget:?package=DialogHost.Avalonia&version=0.7.7

// Install DialogHost.Avalonia as a Cake Tool
#tool nuget:?package=DialogHost.Avalonia&version=0.7.7

DialogHost.Avalonia

Avalonia DialogHost control that provides a simple way to display a dialog with information or prompt the user when information is required.

Dialogs in Avalonia have always been somewhat tricky. This implementation is designed to:

  • Provide correct styling
  • Allow any dialog to be constructed
  • Compatible with code-behind
  • Compatible with MVVM
  • Compatible with pure XAML
  • Work in applications with multiple windows

Dialogs are asynchronous so at some point you will have to deal with that in your code.

Getting started

  1. Install DialogHost.Avalonia nuget package

    dotnet add package DialogHost.Avalonia
    
  2. Add DialogHostStyles element to your app styles in App.axaml. See the example of App.axaml:

    <Application ...
        xmlns:dialogHostAvalonia="clr-namespace:DialogHostAvalonia;assembly=DialogHost.Avalonia"
        ...>
    
        ...
        <Application.Styles>
            ...
            <dialogHostAvalonia:DialogHostStyles />
        </Application.Styles>
        ...
    </Application>
    

    For version below 0.7 instead of <dialogHostAvalonia:DialogHostStyles /> use StyleInclude:

    <StyleInclude Source="avares://DialogHost.Avalonia/Styles.xaml"/>
    
  3. Start using control

Using

The cornerstone of dialogs the DialogHost control. It’s a content control, meaning the underlying content over which the popup dialog will be displayed can be targeted; to a specific area of your app, or the entire Window content.

<Window ...
        xmlns:dialogHost="clr-namespace:DialogHostAvalonia;assembly=DialogHost.Avalonia"
        ...
        Title="DialogHost.Demo">
    <dialogHost:DialogHost CloseOnClickAway="True">
        <dialogHost:DialogHost.DialogContent>
            
        </dialogHost:DialogHost.DialogContent>
        
    </dialogHost:DialogHost>
</Window>

When the dialog is open, the underlying content will be dimmed and disabled.

preview

DialogHost.DialogContent (associated with DialogHost.DialogContentTemplate) is your typical XAML content object property for setting the content of your dialog. You can infer from this that you can use MVVM to bind content, but there are multiple ways of populating the content, showing the dialog, closing the dialog, and processing responses.

previewGif

Alternative way

  • HanumanInstitute.MvvmDialogs allows the use of MVVM design in a simplified way, with DialogHost support. If you opt for that syntax, you do not need most of the documentation below, and the DialogHost container is injected to window automatically at runtime.

Open Dialog Strategies

OpenDialogCommand
Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=materialDesign:DialogHost}, Path=OpenDialogCommand}"

ICommand, typically used on buttons, where DialogContent can be set via CommandParameter.

IsOpen
<dialogHost:DialogHost IsOpen="True" />

Dependency property, to be triggered from XAML, set from code-behind or via a binding. Content must be set in DialogHost.DialogContent.

DialogHost.Show
DialogHost.Show(viewOrModel);

Async/await based static API which can be used purely in code (for example from in a view model). Content can be passed directly to the dialog. Note that if you have multiple windows and multiple DialogHost instances you can set the DialogHost.Identifier property, and provide the identifier to the .Show(...) method to help find the required DialogHost.


Close Dialog Strategies

CloseDialogCommand

You can bind to the DialogHost's OpenDialogCommand:

Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=materialDesign:DialogHost}, Path=CloseDialogCommand}"

ICommand, typically used on buttons inside the dialog, where the command parameter will be passed along to the dialog response.

IsOpen
<dialogHost:DialogHost IsOpen="False" />

Dependency property, to be triggered from XAML, set from code-behind or via a binding.

DialogSession.Close

Via any of the methods for handling the opened event, you can get hold of the dialog session. This can be used to close a dialog via code:

var result = await DialogHost.Show(myContent, delegate(object sender, DialogOpenedEventArgs args)
{
    args.Session.Close(false);
});

or getting DialogSession

DialogHost.GetDialogSession("DialogHost.Identifier here")?.Close(false);

Handle Closing Event Strategies

The DialogClosingEventHandler delegate is key. It provides the parameter provided to DialogHost.CloseDialogCommand, and allows the pending close to be cancelled.

The following mechanisms allow handling of this event, via code-behind, MVVM practices, or just from the code API:

DialogHost.DialogClosing
<dialogHost:DialogHost DialogClosing="DialogHost_OnDialogClosing" />

Bubbling RoutedEvent, which could be used in code-behind.

DialogClosing.DialogClosingCallback
<dialogHost:DialogHost DialogClosingCallback="{Binding DialogClosingHandler}" />

Standard dependency property which enables the DialogClosingEventHandler implementation to be bound, typically from a view model.

DialogHost.Show
var result = await DialogHost.Show(viewOrModel, ClosingEventHandler);

The async response from this method returns the parameter provided when DialogHost.CloseDialogCommand was executed. As part of the Show() signature a DialogClosingEventHandler delegate can be provided to intercept the on-closing event, just prior to the close.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on DialogHost.Avalonia:

Package Downloads
MessageBox.Avalonia

Messagebox for AvaloniaUI

Spice86

Reverse engineer and rewrite real mode DOS programs

Neumorphism.Avalonia

Easy to use and customizable Neumorphism Design implementation for Avalonia UI framework.

HanumanInstitute.MvvmDialogs.Avalonia.DialogHost

Library simplifying the concept of opening dialogs from a view model when using MVVM in WPF

EasyDialog.Avalonia

Package Description

GitHub repositories (8)

Showing the top 5 popular GitHub repositories that depend on DialogHost.Avalonia:

Repository Stars
roslynpad/roslynpad
A cross-platform C# editor based on Roslyn and AvalonEdit
AvaloniaCommunity/Material.Avalonia
Material design in AvaloniaUI
AvaloniaCommunity/MessageBox.Avalonia
Messagebox for AvaloniaUI
flarive/Neumorphism.Avalonia
Neumorphism UI theme for Avalonia apps
8212369/WPR
WP7-8 APP 运行器
Version Downloads Last updated
0.8.0-avalonia11dot1-1 83 4/11/2024
0.7.7 59,631 9/11/2023
0.7.6 36,663 8/5/2023
0.7.5 18,575 7/1/2023
0.7.4 2,018 6/1/2023
0.7.3 749 4/29/2023
0.7.2 509 4/21/2023
0.7.1 420 4/19/2023
0.7.0 595 3/29/2023
0.7.0-preview9 332 3/27/2023
0.7.0-preview8 473 3/25/2023
0.7.0-preview7 362 3/23/2023
0.7.0-preview6 404 3/20/2023
0.7.0-preview5 354 3/11/2023
0.7.0-preview4 632 2/5/2023
0.7.0-preview3 743 1/6/2023
0.7.0-preview2 450 12/12/2022
0.7.0-preview1 382 11/21/2022
0.6.0 3,504 11/6/2022
0.6.0-avalonia10 588 11/6/2022
0.5.1 767 9/4/2022
0.5.0 6,139 7/2/2022
0.4.0 20,281 2/24/2022
0.3.1 14,911 9/10/2021
0.3.0 553 7/17/2021
0.2.2 541 7/15/2021
0.2.1 498 7/14/2021
0.2.0 580 6/3/2021
0.1.1 557 5/5/2021
0.1.0 647 5/4/2021

- Changes Material.Avalonia brush name