Posted by JaneDoe on
I'm evaluating options for a new Windows desktop application. Should I go with a traditional UWP project or adopt the newer WinUI 3 framework? What are the key differences in terms of performance, API surface, and future support?
// Simple WinUI 3 window
using Microsoft.UI.Xaml;
public sealed partial class MainWindow : Window
{
public MainWindow()
{
this.InitializeComponent();
}
}
What experiences do you have with migration paths? Any gotchas?