Alexey Sviridov
Alexey Sviridov

Reputation: 3510

Modern GUI development

Long long time ago was a Delphi, and any developer can rapidly build win32 GUI application. Delphi was a king (long life to king...) but now delphi and win32 has gone away.

So question is - what a preferred platform to rapidly build cross-platform GUI applications at present days? I'm have a good knowledge of Java and C#, and i'm looking for compare

Any real-world usages welcome.

Upvotes: -1

Views: 2910

Answers (7)

Fred
Fred

Reputation: 12826

You can use GtkSharp on .NET Core, or you can use Avalonia on .NET Core. Avalonia is inspired by Windows Presentation Foundation (WPF) and uses XAML.

Personally, I prefer .NET Core over Java.

There is also the Glade user interface editor for designing GTK user interfaces in XML.

Qt is a cross-platform widget toolkit with bindings for many languages including Java and C#.

Upvotes: 1

IceCold
IceCold

Reputation: 21194

Delphi is pretty much alive and kicking (hard).

Want rapid GUI development? Then none can beat Delphi. The VCL library has over 500 visual components!
It provides ALL you need to build cross-platform GUI applications (targeted platforms: Windows 32/64, Linux, Android, OSX, iOS)

All this without those nasty:

   {IFDEF Linux} code      
    {IFDEF Windows} some_other_code  
      {IFDEF Mac} some_other_other_code  

Delphi also has Super-Duper Strings

Upvotes: 1

Michael Dillon
Michael Dillon

Reputation: 32392

There a three Python-based projects that fit into the same space that Delphi was in.

Pythoncard, Dabo and Glom

In addition, consider building web applications that run locally and use a single-url browser such as Mozilla Prism or xulrunner to access it.

Upvotes: 1

Herbert Sitz
Herbert Sitz

Reputation: 22256

As someone else said, Delphi is still alive and kicking. But standard Delphi is still just Win32, not really a cross-platform solution although a number of people use WINE successfully with Delphi apps. Embarcadero does have their relatively new .NET based ObjectPascal variant ("Delphi Prism"), though. Delphi Prism/.net/mono may be slightly better than c#/.net/mono for cross platform, but it's also more expensive and not from Microsoft.

Former Delphi users who want to do cross platform can use the mostly-Delphi-compatible FreePascal open source ObjectPascal compiler in its Lazarus IDE, which has become fairly solid and replicates most of Delph's IDE and the VCL. It compiles desktop apps to Windows, Linux, OSX, and other platforms, both 32 and 64 bit.

TO me it seems at least worthy of a look if you liked Delphi in the past: http://www.freepascal.org http://www.lazarus.freepascal.org

Upvotes: 4

knoopx
knoopx

Reputation: 17400

I was asking this myself a year ago. Finally I went with Mono/GTK# and I'm very satisfied. Monodevelop feels like Delphi, following the "rapid application development" philosophy.

Mono runs on major platforms and GTK feels more or less native on them (as opposed to Java GUIs, they look ancient).

C# is also a major player on rapid development.

Another choice would be C++/QT. Google and many more big companies uses it on their products.

Upvotes: 4

Juparave
Juparave

Reputation: 706

Delphi is pretty much alive http://www.embarcadero.com/products/delphi, also if you like there is C++ Builder which is my personal favorite (if I where into C++). But if you want to try new RAD technologies I'll go with wxPython and SQLAlchemy.

Upvotes: 3

Randolpho
Randolpho

Reputation: 56419

You're not limited to C#/Mono or Java... there's also Python/GTK:

http://www.pygtk.org/

Upvotes: 5

Related Questions