Does the XAMLStudio supports WinUI 3 apps? #62
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Welcome! Thanks for trying XAML Studio and making a post! 🦙❤️ Most of the XAML between things will be the same (even if it's still running on UWP, eventually there are plans to natively run on WinUI 3 as well, see #34). If you just copy the contents of your Window (the I'd also recommend checking out my video series for some background on working with Windows Development! This one talks about organization of XAML: https://www.youtube.com/watch?v=AM7Txg78Y7E&list=PLfYoThk3lXSTR6nkF_w8fPjI1M8LSQS8k&index=2 |
Beta Was this translation helpful? Give feedback.



Welcome! Thanks for trying XAML Studio and making a post! 🦙❤️
Most of the XAML between things will be the same (even if it's still running on UWP, eventually there are plans to natively run on WinUI 3 as well, see #34).
If you just copy the contents of your Window (the
Grid) in to XAML Studio, it should work better (outside of controls specific to WinUI 3). XAML Studio just doesn't know how to deal with the top-levelWindowtype, it knows aboutPage,UserControl,ContentDialog, andResourceDictionaryright now (or other base FrameworkElement based controls really).I'd also recommend checking out my video series for some background on working with Windows Development! This one talks about…