H.ReactiveUI.CommonInteractions.WinUI 1.0.40

Suggested Alternatives

Mvvm.CommonInteractions.WinUI

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

// Install H.ReactiveUI.CommonInteractions.WinUI as a Cake Tool
#tool nuget:?package=H.ReactiveUI.CommonInteractions.WinUI&version=1.0.40

H.ReactiveUI.CommonInteractions

Language License Requirements Requirements Requirements Build Status

Common ReactiveUI MVVM Level Interactions(like open/save file) for WPF/UWP/WinUI/Uno/Avalonia platforms.

NuGet

NuGet NuGet NuGet NuGet NuGet NuGet

Install-Package H.ReactiveUI.CommonInteractions.Core
Install-Package H.ReactiveUI.CommonInteractions.Wpf
Install-Package H.ReactiveUI.CommonInteractions.Uno
Install-Package H.ReactiveUI.CommonInteractions.Uwp
Install-Package H.ReactiveUI.CommonInteractions.WinUI
Install-Package H.ReactiveUI.CommonInteractions.Avalonia

Usage

Add to your App constructors:


public sealed partial class App
{
    private InteractionManager InteractionManager { get; } = new();

    public App()
    {
        InteractionManager.Register();

        // Not necessary. Displays unhandled exceptions using MessageInteractions.Exception.
        // InteractionManager.CatchUnhandledExceptions();

        // your code
    }
}

FileInteractions

// Open
var file = await FileInteractions.OpenFile.Handle(new OpenFileArguments
{
    SuggestedFileName = "my.txt",
    Extensions = new[] { ".txt" },
    FilterName = "My txt files",
});
if (file == null)
{
    return;
}
var text = await file.ReadTextAsync().ConfigureAwait(true);

// Save (you need to save file from previuos step)
await file.WriteTextAsync(text).ConfigureAwait(false);

// Save As
var file = await FileInteractions.SaveFile.Handle(new SaveFileArguments(".txt")
{
    SuggestedFileName = "my.txt",
    FilterName = "My txt files",
});
if (file == null)
{
    return;
}
await file.WriteTextAsync(text).ConfigureAwait(false);

MessageInteractions

await MessageInteractions.Message.Handle("Message");
await MessageInteractions.Warning.Handle("Warning");
await MessageInteractions.Exception.Handle(new InvalidOperationException("Exception"));
bool question = await MessageInteractions.Question.Handle(new QuestionData("Are you sure?"));

WinUI requires a window to display the ContentDialog, so you'll need to set it explicitly in your App.OnLaunched:

protected override void OnLaunched(LaunchActivatedEventArgs args)
{
#if HAS_WINUI
    var window = new Window();
    MessageInteractionManager.Window = window;
#endif
}

WebInteractions

await WebInteractions.OpenUrl.Handle("https://www.google.com/");

DragAndDropExtensions

// WPF
xmlns:h="clr-namespace:H.ReactiveUI;assembly=H.ReactiveUI.CommonInteractions.Wpf" 
// UWP/Uno
xmlns:h="using:H.ReactiveUI"
<Element
    AllowDrop="True"
    h:DragAndDropExtensions.DragFilesEnterCommand="{Binding DragFilesEnter}"
    h:DragAndDropExtensions.DragTextEnterCommand="{Binding DragTextEnter}"
    h:DragAndDropExtensions.DragLeaveCommand="{Binding DragLeave}"
    h:DragAndDropExtensions.DropFilesCommand="{Binding DropFiles}"
    h:DragAndDropExtensions.DropTextCommand="{Binding DropText}"
    >

Command arguments: DragFilesEnterCommand - FileData[] - Array of files.
DragTextEnterCommand - string - Text.
DragLeaveCommand - null.
DropFilesCommand - FileData[] - Array of files.
DropTextCommand - string - Text.

Contacts

Product Compatible and additional computed target framework versions.
.NET net5.0-windows10.0.17763 is compatible.  net6.0-windows was computed.  net6.0-windows10.0.17763 is compatible.  net7.0-windows 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
1.0.56 455 8/11/2022
1.0.55 434 7/14/2022
1.0.54 474 7/11/2022
1.0.53 452 6/30/2022
1.0.52 433 6/30/2022
1.0.51 447 6/29/2022
1.0.50 454 6/24/2022
1.0.49 488 3/25/2022
1.0.48 478 3/18/2022
1.0.45 541 1/18/2022
1.0.44 476 1/11/2022
1.0.43 463 1/11/2022
1.0.42 496 1/4/2022
1.0.41 486 12/22/2021
1.0.40 478 12/22/2021
1.0.39 488 12/22/2021
1.0.38 510 12/14/2021
1.0.37 503 12/14/2021
1.0.36 749 12/11/2021
1.0.35 499 12/10/2021
1.0.34 516 12/9/2021
1.0.33 500 12/5/2021
1.0.32 522 12/5/2021
1.0.31 505 12/5/2021
1.0.30 586 11/18/2021
1.0.29 532 11/18/2021

⭐ Last 10 features:
- feat: Updated README. 2021-12-22
- feat: Updated NuGet packages. 2021-12-22
- feat: Updated Uno to 4.0.11. 2021-12-15
- feat: Added GenerateDocumentationFile true to Core library with some docs. 2021-12-11
- feat(Avalonia): Added support for FileInteractions arguments. 2021-12-09
- feat(Avalonia): Added FileInteractions support. 2021-12-09
- feat: Added Avalonia support. 2021-12-09
- feat(apps.WinUI): to 18362. 2021-12-08
- feat: Updated README. 2021-12-05
- feat: Updated NuGet packages. 2021-12-05

🐞 Last 10 bug fixes:
- fix(Avalonia): Changed BaseConverter null values to UnsetValue. 2021-12-15
- fix(Avalonia): Fixed OpenFileDialog Filters bug. 2021-12-11
- fix: Fixed CI to release avalonia. 2021-12-10
- fix(apps.Avalonia): Fixed FileInteractions. 2021-12-09
- fix(apps.Avalonia): Fixed designer problems. 2021-12-09
- fix(apps.Avalonia): Added InteractionManager.Register. 2021-12-09
- fix: Changed Uwp TargetFramework to uap10.0.18362. 2021-12-05
- fix(Uno.WinUI): Fixed issues from WinUI. 2021-11-19
- fix: Fixed CI. 2021-11-18
- fix: Fixed missing Core NuGet package. 2021-11-05