Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently stating the development of a C# application witch will manly focus Windows platform but we would be possible to port it to Mac later on. We're ties to C# because some of the core logic is already written in C#.

What can you recommend me, i don't really have the experience of those kind of choices ? Is it possible to build an application in C# and targeting Windows (using WPF) and the port it using Mono to mac ?

Witch pattern should i use ? MVVM, a classic MVC or something else ?

Thanks,

share|improve this question
This is a discussion question, and isn't really appropriate here. See the FAQ. Also see Running a C#/WPF application on a Mac. – Ken White Feb 12 at 23:28
I already tried Silverlight but it's not enough for my purposes – user1869531 Feb 12 at 23:34

closed as not constructive by Ken White, Jeff Mercado, eldarerathis, Dour High Arch, gnat Feb 13 at 6:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 1 down vote accepted

WPF isn't supported by Mono. It's going to be very difficult to get WPF working on MAC OSX. As far as I know, the only way to do is via XWT. But I'm not intimately familiar with it.

share|improve this answer
I know that WPF isn't supported by Mono but is there a way to keep the Core separated to the UI so that you can compile to Mono afterward building a proper UI for it. If yes witch patern or framework should i use ? – user1869531 Feb 13 at 0:15
@user1869531 Yeah. Use MVVM with WPF. Keep all of the Model code out of the UI project. – ernest Feb 14 at 15:08

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