I have a C# application. Currently all modules are written in .NET 2 and it uses some executables that have linux ports. So I was wondering what toolkit should I use on Windows and MacOS to compile it max easy on both? On Windows Some guys told me that on Windows I can use WinForms, but on Mac I must use MonoMac, but the transition is hard to make. I need something to be done easily.

link|improve this question

68% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Port it to Mono (NOT MonoMac) and it should work on both.

http://www.mono-project.com/Guide:_Porting_Winforms_Applications

You should be able to recompile and run for both platforms once you have completed the port.

link|improve this answer
You mean using the starndart Mono WinForms emulation? Many people told me it's not stable. – blez Oct 27 '10 at 17:42
It is not an emulation, and it is stable. It is also 100% (or nearly) complete. It is a problem with the software, which uses P/Invoke, not with the mono's implementation. – n535 Oct 27 '10 at 17:45
You should look at this other article on StackOverflow if you are not yet convinced: stackoverflow.com/questions/18450/is-mono-ready-for-prime-time – vdoogs Oct 27 '10 at 17:50
So I can recompile my WinForms app freely if I don't use many pinvokes or check the platform before using them? – blez Oct 27 '10 at 17:50
If there are no PInvokes, you don't have to recompile it. You can use the Mono Migration Analyzer (MoMa) to find out, if there will be any problems running on a mono platform. – n535 Oct 27 '10 at 17:57
show 3 more comments
feedback

GTK# may be an option. I don't conciser it to be convenient though, but it is a matter of taste.

In my humble opinion, you should use different GUI toolkits for each platform ( this is usually a topic of holy wars, but i think, if your budget is enough for that, you really should consider doing this). I can name only a few completely cross-platform applications, which we written using only one GUI toolkit that really fit all systems altogether.

link|improve this answer
GTK is ugly and almost unusable on Windows. – blez Oct 27 '10 at 17:37
1  
It is not unusable at all, ugly however. – n535 Oct 27 '10 at 17:42
GTK+ perfectly usable on Windows. It may look out of place however on Windows, but it's totally usable. – Zac Bowling Oct 27 '10 at 18:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.