Home > Mobile >  Is there a Visual Studio 2022 .Net 6.0 compatible version of Microsoft.Express.Drawing?
Is there a Visual Studio 2022 .Net 6.0 compatible version of Microsoft.Express.Drawing?

Time:05-31

I would like to create a WPF custom control circular progressbar.

Earlier versions of .Net would support the Microsoft.Expression.Drawing nuget package download which made Arc creation really simple.

I am developing with Visual Studio 2022 and .Net 6.0 .

If I try to download the Microsoft.Expression.Drawing nuget package, an error message is produced saying that some parts of the package are not compatible.

Is there a viable substitution?

CodePudding user response:

It looks like it's baked in now if you take a look at the WPF to .NET6 migration guide.

At least some of the blend namespaces are included.

  • Related