Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt with C#/.NET in Visual Studio v.09?

Tags:

Do any of you have any experience working with Qt and C# in Visual Studio? Is it at all possible/easy to use together? I've searched for C# bindings for Qt, but all projects seem to have been abandoned.

I'm doing an application which must be coded in C#, which also needs to be able to run on Ubuntu (with Mono). So, Qt was the first thing that came to mind.

like image 223
Loern Avatar asked Sep 15 '09 10:09

Loern


1 Answers

The Qyoto project seems to be the way to go, and it seems to be still active. I don't have experience with it though.

Note that if the application is simple (i.e. doesn't use third-party components and no "hacks" to change behaviour), you can also give a simple WinForms application a try, which should run fine on Mono. And, well, if you don't actually need a GUI, you don't need anything except Mono. The Mono project itself, by the way, seems to favor Gtk# over Qt.

like image 123
OregonGhost Avatar answered Oct 12 '22 08:10

OregonGhost