vote up 1 vote down star

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.)

flag

4 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

One simple suggestion might be GTK#

link|flag
I'd prefer it if it would run on Windows without having to install something else. – weiqure Feb 16 at 19:13
vote up 0 vote down

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|flag
vote up 0 vote down check

I now use Wrapper classes that implement interfaces like IButton.

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

link|flag

Your Answer

Get an OpenID
or

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