Is it possible to create Windows Form apps on Mac OS?
Asked Answered
A

1

7

I'm studying Informatics Engineering, and my teacher uses a Windows PC to teach us Windows Forms. My question is: Can I do my Windows Forms homework on my mac? I'll install Visual Studio of course.

Antimicrobial answered 17/9, 2018 at 15:40 Comment(2)
Install VirtualBox and install a Windows VM? Is that an option? If not, Amazon Workspaces work wonderfully.Eugenol
For a course like that, you do need a Windows machine, virtual or physical, so as to follow the teacher's setup. Windows Forms is Windows only, and the cross platform implementation from Mono is incomplete and should be avoided. Though of course, if I am the teacher, I will choose some other UI frameworks to teach, blog.lextudio.com/… so that my students can use any OS they like.Sawyer
S
10

Can you do the Windows Forms homework on your Mac? Maybe.

Should you try to do the Windows Forms homework on your Mac? Probably not.

  • The Mono version is a different implementation of Forms and you're going to run into bugs, missing features, etc.
  • You're going to end up debugging environment differences. Mono/OSX vs Windows, VS for Mac vs VS proper, etc.
  • You'll end up in more trouble if they provide bat/powershell scripts, require another Windows-only library, etc.

The end result being either you'll spend a lot of time trying to use things you receive from someone else, or (even worse) they won't be able to run what you turn in.

Alternatives:

Selfregard answered 18/9, 2018 at 3:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.