I want to get my programme running on Linux but I don't kow what to do about the UI. Right now I'm using WPF but it probably won't be supported by Mono too soon. The UI controls are edited directly by the non-UI code.

Switching to Windows Forms would be easiest but I think it doesn't really look good on Linux.

What I am dreaming of right now is having some kind of abstract UI that provides the standard controls (with the standard members) and keeps the non-UI code away from the rest. So I would have to translate changes in the abstract UI to the concrete UI. This would be a lot of work but the code would be highly re-usable.

What would you do and what do you think of the last idea?

(It would be good if it would not require anything new to be installed on Windows.)

link|improve this question

feedback

5 Answers

I've not worked with that myself, but you could take a look at wx.NET which is a .net wrapper for wxWidget (I have used the latter for cross-platform UI design and quite liked them :-).

link|improve this answer
feedback

One simple suggestion might be GTK#

link|improve this answer
I'd prefer it if it would run on Windows without having to install something else. – weiqure Feb 16 '09 at 19:13
feedback

I've always used Gtk#, but it is really ugly in Windows applications, you could use Windows Forms 2.0 in the last release of Mono. Or you could even use Trolltech's Qt 4 with .net using this http://code.google.com/p/qt4dotnet/

link|improve this answer
feedback
up vote 0 down vote accepted

I now use Wrapper classes that implement interfaces like IButton.

If it works in the long term I'll upload the code somewhere.

link|improve this answer
feedback

You might be looking for something like Eto.Forms, which is a .NET library that allows you to write a single common UI, which is then translated to the native toolkit using WinForms, GTK#, or MonoMac/Cocoa.

The benefit to using this approach is your app will look native on every platform.

There are also WPF and iOS ports in the works, which you will be able to switch to when they are ready.

link|improve this answer
WPF is now fully implemented! – Curtis Feb 13 at 17:10
feedback

Your Answer

 
or
required, but never shown

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