Reputation: 8622
Is it possible to create an application in Xamarin Forms and run it on Windows 7? I can't find any documentation on the Xamarin website.
Upvotes: 14
Views: 11166
Reputation: 17969
Not directly and it will not be supported as Windows 7 is officially a legacy platform.
However.
https://github.com/jvlppm/xamarin-forms-wpf is one (orphaned?) project which was mentioned in a Xamarin Forums thread on Forms for Desktop
As Forms was made open source you can bet there will be even more projects trying to do this. Conceptually, it's a fairly straightforward remapping but I wouldn't do it unless someone hired me who had a strong need to support Windows 7.
Upvotes: 5
Reputation: 45233
No, you can't run a Xamarin.Forms app on Windows 7. Xamarin.Forms is a UI abstraction layer for
It's not compatible to WPF or anything else for Windows Desktop applications. You can generally create Xamarin.Forms apps for Windows 8.0 and later by targetting WindowsRT or UWP. Universal Windows applications can run in a resizable window on a Windows 10 desktop PC.
Upvotes: 8