Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:51:18Z http://stackoverflow.com/feeds/question/72580 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet 3 Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? yar 2008-09-16T14:01:31Z 2008-12-22T13:50:49Z <p>I have an app that I've written in C#/WinForms (<a href="http://www.thekbase.com" rel="nofollow" title="TheKBase">my little app</a>). To make it cross-platform, I'm thinking of redoing it in Adobe AIR. Are there any arguments in favor of WinForms as a cross-platform app? Is there a cross-platform future for Winforms (e.g., Mono, etc.)? Suggestions for cross-platform UI development?</p> <p>By cross-platform I mean, currently, Mac OSX, Windows and Linux.</p> <p>This question was <a href="http://stackoverflow.com/questions/116468/winforms-for-mono-on-mac-linux-and-pc-redux">asked again and answered with better success</a>.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/72604#72604 2 Answer by Łukasz Sowa for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? Łukasz Sowa 2008-09-16T14:03:10Z 2008-09-16T14:03:10Z <p>WinForms are fully supported by Mono, so they are cross-platform.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/72610#72610 1 Answer by Michael Pliskin for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? Michael Pliskin 2008-09-16T14:03:31Z 2008-09-16T14:03:31Z <p>Well I think the only way to for cross-platform reliably with C# is <a href="http://www.silverlight.net" rel="nofollow">Microsoft Silverlight</a>, but is not really WinForms, and browser-based. Other than that, yes Mono is a chance.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/72632#72632 -2 Answer by pb for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? pb 2008-09-16T14:05:05Z 2008-09-16T14:24:14Z <p>I don't think there is a future for WinForms at all. Since it appears to have been a stop-gap solution even in MSFT world ( a very thin wrapper around Win32). And virtually no changes seem to have been made to System.Windows.Forms in both .NET 3.0 and 3.5</p> <pre><code>&lt;/speculation&gt; </code></pre> <p>I would use Java or Air.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/72633#72633 6 Answer by chakrit for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? chakrit 2008-09-16T14:05:11Z 2008-09-16T15:51:19Z <p>As far as my experience in Flex/AIR/Flash actionscripting goes, Adobe AIR development environment and coding/debugging toolsets are far inferior to the Visual Studio and .NET SDK as of the moment. The UI toolsets are superior though.</p> <p>But as <em>you already have a working C# code</em>, porting it to ActionScript might requires a redesign due to ActionScript having a different way of thinking/programming, they use different primitive data types, for example, they use just a <code>Number</code> instead of <code>int float double</code> etc. and the debugging tools are quiet lacking compared to VS IMO.</p> <p>And I heard that <a href="http://www.mono-project.com/GtkSharp" rel="nofollow">Mono's GtkSharp</a> is quiet a decent platform.</p> <p>But if you don't mind the coding/debugging tooling problems, then AIR is a great platform. I like how Adobe integrates the Flash experience into it e.g. you can start an installation of AIR application via a button click in a flash movieclip, that kind of integration.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/72970#72970 1 Answer by Thomas Danecker for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? Thomas Danecker 2008-09-16T14:33:26Z 2008-09-16T14:33:26Z <p>If you want to use the .net Framework, Microsoft Silverlight is a good (the only?) choice. The browser does a good job as a shell, but you could also write your own application shell for it. For example, Scott Handelman <a href="http://www.hanselman.com/blog/default.aspx?date=2008-09-05" rel="nofollow">mentions</a> the NY Times Reader written in Silverlight and hostet on Cocoa on a Mac.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/72982#72982 3 Answer by FlySwat for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? FlySwat 2008-09-16T14:34:20Z 2008-09-16T14:34:20Z <p>Why would you go with Air?</p> <p>Use <a href="http://www.mono-project.com/GtkSharp" rel="nofollow">GTK#</a>, and you have a cross platform forms engine and you get to keep your C# code.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/219351#219351 0 Answer by person-a for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? person-a 2008-10-20T18:13:14Z 2008-10-20T18:13:14Z <p>I think that as long as you make sure that the business logic code you write is cross-platform (i.e. using backslashes in paths only works on Windows - forward slashes works on all OS's), then Mono shouldn't have major problems running an unmodified WinForms program. Just make sure you test for graphical glitches.</p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/219361#219361 0 Answer by stephenbayer for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? stephenbayer 2008-10-20T18:16:47Z 2008-10-20T18:16:47Z <p>I asked a similar question last week. I've been using Mono all along, and have had no issues running the applications I compile to IL to run on SuSE linux (I usually run KDE) or windows, however, I've not gone out and got a mac yet to test it on. I will be soon, though, probably with in a couple weeks. But all and all development in Mono has been very good at creating application that will run on multiple platforms. </p> http://stackoverflow.com/questions/72580/making-a-c-winform-application-cross-platform-should-i-use-air-mono-or-somet/385653#385653 2 Answer by Emrah for Making a C#/Winform application cross-platform - should I use AIR, Mono, or something else? Emrah 2008-12-22T06:06:19Z 2008-12-22T13:50:49Z <blockquote> <p>I'm thinking of redoing it in Adobe AIR</p> </blockquote> <p>Not having spent much time with AIR, my personal opinion is that it is best for bringing a webapp to the desktop and provide a shell to it or run your existing flash/flex project on the desktop. </p> <p>Btw, if you don't know ActionScript, I mean its details, quirks, etc, don't forget to factor in the time it will take googling for answers.</p> <blockquote> <p>Are there any arguments in favor of WinForms as a cross-platform app? Is there a cross-platform future for Winforms (e.g., Mono, etc.)?</p> </blockquote> <p>It's always hard to predict what will happen, but there is at least one project (Plastic SCM) I know of which uses Mono Winforms on Win, Mac and Linux, so it is certainly doable. However, they say they built most of their controls from the ground up (and claim they want to release them as open source, but not sure if or when), so you will need to put in some work to make things look "pretty". </p> <p>I played with Winforms on non-windows platforms and unfortunately, it isn't exactly "mature" (especially on Mac). So what you get out of the box may or may not be sufficient for your needs.</p> <p>If you decide a desktop app is not the best way to provide a cross-platform solution, you can always take your business logic written in C# and create either a full-blown webapp with ASP.NET or go with Silverlight, so many other options exist with C#.</p>