Migrating Files UWP to Uno, Part I
A post about my attempt migrating Files UWP to Uno Platform
WinUI was developed as part of UWP and has been the foundation of many Windows 10 apps. Uno Platform implements the same API surface on non-Windows platforms, so some applications can be migrated to iOS/Android/macOS (and even the Web via WebAssembly). But how difficult can such a migration be? In this series of posts, I will try to cover the story to migrate Files UWP, a medium size open source file explorer, to macOS.
What is Files UWP?
It is interesting that Microsoft keeps the classic Windows Explorer on Windows 10, instead of rewriting it in UWP. But a group of developers do make a UWP version file explorer, as below, and publish it as an open source project on GitHub.
By checking its code base, we can see typical usage of XAML/MVVM, as well as file system related API usage. So nothing is terribly complex.
We will follow the Uno migration guide to see what to do next.
Organizing the Code
The guide is pretty short and not in the step by step fashion. So I have to guess sometimes what exactly I am supposed to do.
Theses are the steps I did to get the initial working directory on my machine,
- Clone Files UWP repo from GitHub.
- Install Uno project templates.
- Open Files UWP solution in Visual Studio 2019.
- Add a “Cross-Platform App (Uno Platform)” project to that solution. In fact, VS created a bunch of projects.
So finally a new folder called Files_Uno is added to the repo, and it contains many projects for different platforms.
Migrating the Code
I copied the files from original Files folder to Files_Uno | Files_Uno.Shared
and Files_Uno | Files_Uno.UWP
. Then compile and run the UWP project to confirm that everything continues to work.
Note that a lot of details are not listed here, as they are not quite important for macOS.
Then it is time to switch to the macOS project and try to compile it, and there are hundreds of failures as you can imagine.
Don’t worry. We can conquer them one by one and learn from that.
Typical Errors
Namespace related errors are quite common.
Window.Current
must be rewritten asWindows.UI.Xaml.Window.Current
, because nowPage
class has its ownWindow
property (which maps to a Cocoa object).- Uno does not yet have 1Microsoft.UI.Xaml.Controls1, so have to use equivalent controls from 1Windows.UI.Xaml.Controls1.
TabView
fromMicrosoft.UI.Xaml.Controls
is not implemented, so have to switch toTabView
fromMicrosoft.Toolkit.Uwp.UI.Controls
. Note that the two controls have significant differences, so switching to another requires both changes to XAML and code behind.FileIO.*
are not implemented yet, so have to rewrite them asSystem.IO
based calls.- Bindings to static items are not yet supported by Uno, so have to wrap static items with instance items and then bind to the wrappers.
So after this commit the code base finally compiles and runs on macOS. But the result is in fact disappointing, as a blank window is displayed.
What happens and how to move on? We will visit that in Part II.