I wish to learn how to build native WPF desktop app, by applying some modern UI (Like navigation view) from UWP.
However, I'm getting rather confused, with same class name, but different namespace
- https://learn.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.navigationview?view=winrt-19041 (Windows.UI.Xaml.Controls)
- https://learn.microsoft.com/en-us/uwp/api/microsoft.ui.xaml.controls.navigationview?view=winui-2.4 (Microsoft.UI.Xaml.Controls)
I was wondering, which is which, and which I should use in my WPF project?
Thanks.