Reputation: 165
Im developing a Desktop app with WFP, but I've to migrate it to UWP Windows 10. Does anybody knows what this conversion involves? How complex is it?
Thank you in advance for the help :)
Upvotes: 2
Views: 2647
Reputation: 686
.NET in WinRT is a lot more limited than the one in WPF. So the level of difficulty of porting directly depends to your app's functionality.
Upvotes: 0
Reputation: 1072
XAML for WPF and WINRT is not same because lot of classes which exist for WPF are missing in WINRT library. So the porting may have lots of work to do.
This may be helpful to you: https://channel9.msdn.com/Events/Build/2015/3-741
Upvotes: 3
Reputation: 77
If you are going to convert it from WPF to UWP be sure to keep an eye out for the next few things:
Upvotes: 0