vote up 2 vote down star
1

What is best programming language to make Windows GUIs?

flag
What, no suggestions for Win32 and C? :P – Mike Weller Jun 13 at 8:32
2  
Nitpick here, but GUIs shouldn't be apostrophised. – Charlie Somerville Jun 13 at 8:50

closed as subjective and argumentative by Neil Butterworth, SpliFF, Brian Rasmussen, Assaf, Earwicker Jun 13 at 8:56

9 Answers

vote up 7 vote down check

With the power it gives you and the great features borrowed from other languages, I'll have to say C#.

link|flag
For sure. For any plain ol' windows application I make, I switch from C++ to C# simply because it's the right tool for the job. – GMan Jun 13 at 7:19
vote up 3 vote down

XAML is very powerful for creating WPF applications in C# or VB. The Visual Studio designer is ok, if you want to create very "designed" UIs you can use Expression Studio.

link|flag
+1, much easier than C# in my opinion. – musicfreak Jun 13 at 7:55
vote up -3 vote down

The one you know. Other than that this is subjective and I'm voting to close.

link|flag
1  
Indeed the question is subjective and should be tagged as such but I don't think it is without value. For those of us new to development (or gui development) the number of options is very large and can be somewhat overwhelming, so seeking the advice of one's peers is reasonable – Crippledsmurf Jun 13 at 7:50
I completely agree with SpliFF. – Bob Somers Jun 13 at 8:52
vote up 0 vote down

It depends on your programming abilities and preferences.

Certainly the easiest approach for Windows applications is .net, of which Visual Basic and C# are the easiest to learn and best supported with community content. However, most languauges can be used for windows GUIs, so if you already know one or two, this will surely colour your choice.

link|flag
vote up 2 vote down

This may sound crazy, but I've found I can develop with C++/wxWidgets pretty fast.

I suspect the language is less important than the framework, and wxWidgets is pretty good (I can knock up GUIs quicker in C++/wxWidgets than I can with Java/Swing).

link|flag
vote up 0 vote down

I don't believe there is a "best" language for any task in an absolute sense, but rather that the best tool for a given task is determined by the tasks requirements.

As stated above .NET and C# do provide a very easy path to GUI development and should be considered for most new work, provided that a dependency on the CLR & .NET Framework is acceptable.

If you don't want to have a dependency on the .NET Framework for whatever reason then you are left to choose from the unmanaged platform options of which there are many.

In terms of languages C / C++ tend to be the focus of most of the Microsoft doocumentation so you may wish to choose one of these languages for the sake of ease.

If you opt for C++ then MFC is a popular choice for strictly windows applications, however if cross-platform deployment is a requirement then you may wish to investigate one of the many other available libraries including the previously mentioned wxWidgets.

link|flag
vote up 5 vote down

Nothing beats Delphi on this! C# is made by the same guy who made Delphi!

link|flag
C# has proper GC, Delphi only has ref-counting, so it seems language designers can learn something from experience. For this reason alone, the majority of modern languages beat Delphi. – Earwicker Jun 13 at 8:59
vote up 0 vote down

I'll vote for C or C++ along with the Windows API or MFC (depending on the type of UI you are developing).

link|flag
vote up 0 vote down

There's no single "best language". It depends on what kind of applications you currently develop, and which languages/environments you are already familiar with.

For instance, I use Python with PyQt for Windows GUIs - and it works really really well. Importantly, it provides a means of very simple portability between platforms, because virtually the same code can run on Linux and OS X.

C# is also very good for this purpose. So is C++ with Qt or wxWindows.

link|flag

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