Replies: 2 comments 2 replies
-
Hey @GodEnki, version 3.0.0 is not yet released and there is no official documentation. If you want to see examples of how it works, you can build Wpf.Ui.Gallery. If you want to make your own application with WPF UI 3.0+, you can use the pre-relase package by adding an entry to your csproj:: <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows10.0.22621.0</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WPF-UI" Version="3.0.0-preview.1" />
</ItemGroup>
</Project>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
When I try to compile parts of the Wpf.Ui.Gallery, I get something like that:
so it seems that there are a few things missing in WPFUI 3.0? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, first of all thank you for the great project. I see there is a lot of changes coming and I tried to use the preview nuget package (version 3.0.0 - preview.1). Is there any documentation how to use that? It seems that the template app from version 2.0.3 will no longer work?
Beta Was this translation helpful? Give feedback.
All reactions