|
|
|
|
|
by dgellow
893 days ago
|
|
Win32 and WinUI serve different purposes, they aren’t meant to replace one another. Win32 is simple but also really low level. It’s great to get a window handler and handle low level events but building a modern graphical UI requires at minimum a layout system, that’s where WinUI comes handy. Also you can now mix Win32 with WinUI via the concept of XAML island. It’s not perfect but you don’t have to be blocked in one world or the other. Though I personally prefer dealing with WPF via AvaloniaUI, styling with winUI is often too frustrating… https://www.avaloniaui.net/ |
|
Hence why there is even documentation on how to migrate, now legacy.
https://blogs.windows.com/windowsdeveloper/2014/07/24/introd...
"Roadmap for Windows Runtime apps using C++"
https://learn.microsoft.com/en-us/previous-versions/windows/...
"Win32 and COM APIs for UWP apps"
https://learn.microsoft.com/en-us/uwp/win32-and-com/win32-an...
Specially the subsection "Alternatives to Win32 and COM API".