ReswPlus icon indicating copy to clipboard operation
ReswPlus copied to clipboard

Support for Uno platform (WinUI3)

Open jp-weber opened this issue 2 years ago • 0 comments

I would be very happy if the extension would also work for a project based on uno platform. this would then also support WinUI3 through the namespace.

In order to keep this compatible with UWP, we could set a condition (C#):

using System;
using Windows.ApplicationModel.Resources;
#if WINDOWS_UWP
using Windows.UI.Xaml.Markup;
using Windows.UI.Xaml.Data;
#else
using Microsoft.UI.Xaml.Markup;
using Microsoft.UI.Xaml.Data;
#endif

jp-weber avatar May 07 '23 15:05 jp-weber