It possible to convert my solution to Xamarin, Universal Windows Platform (UWP), or .NET MAUI?

B M-A 361 Reputation points
2023-03-09T13:07:30.6266667+00:00

Hello!

I have a solution with two projects : a WPF application and a web service .

It possible to convert my solution to Xamarin, Universal Windows Platform (UWP), or .NET MAUI?

I want convert my application to be run on a mobile device.

Best regards,

Xamarin
Xamarin
A Microsoft open-source app platform for building Android and iOS apps with .NET and C#.
5,297 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,421 questions
Universal Windows Platform (UWP)
.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
2,935 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,314 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 57,166 Reputation points
    2023-03-09T16:30:56.7366667+00:00

    there is no current migration tool, you must do it manually. at this point MAUI is mostly namespace changes from Xamarin, so migrating to MAUI is about the same. see this doc for Xamarin vs WPF

    https://learn.microsoft.com/en-us/xamarin/cross-platform/desktop/controls/wpf?source=recommendations

    basically you will need to recreate the UI with Maui/Xamarin forms Xaml, and adjust the binding code.

    0 comments No comments