Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Xamarin Forms be run on Windows 7

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.

like image 872
Emmanuel Avatar asked Oct 21 '15 18:10

Emmanuel


People also ask

Can I run Xamarin on Windows?

Xamarin. Forms no longer supports Windows 8.1, Windows Phone 8.1, or Windows 10 Mobile, but Xamarin. Forms applications do run on the Windows 10 desktop. There is also preview support for the Mac, WPF, GTK#, and Tizen platforms.

What platforms does Xamarin support?

Xamarin. Forms applications can be written for the following operating systems: iOS 9 or higher. Android 4.4 (API 19) or higher (more details).

Is Xamarin forms going away?

In May 2020, Microsoft announced that Xamarin. Forms, a major component of its mobile app development framework, would be deprecated in November 2021 in favour of a new . Net based product called MAUI - Multiform App User Interface.

Do I need a Mac for Xamarin?

If you're a die-hard Windows user, like me, you'll be excited to know that you can now build iOS application using Xamarin (and Xamarin. Forms) and Visual Studio, without having to buy or use a Mac. That's right for development, you no longer need to invest, or carry around, a Mac.


2 Answers

No, you can't run a Xamarin.Forms app on Windows 7. Xamarin.Forms is a UI abstraction layer for

  • iOS
  • Android
  • Windows Phone
  • Windows RT
  • (in the future) Universal Windows Platform

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.

like image 58
Wosi Avatar answered Sep 25 '22 06:09

Wosi


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.

like image 24
Andy Dent Avatar answered Sep 25 '22 06:09

Andy Dent