tags:

views:

43

answers:

1

Hi!guys. I mainly work on c#, and wpf is my first choice when I make desktop software. But I am lack of c++ experience, and I want to develop some desktop software in c++, now I have some problem with the gui framework. I'm learning qt, and compared to wpf, I have much more code to write, I like the xml way to describe gui. But qt's xml doesn't have many functions like wpf, and I don't like the new qml. I heard about lua + xml to make the gui. It's inspired me, I think may be I can use python or ruby do the gui(in xml way) ,and c++ do the logic, does there any solution? Can somebody give me some links or advices, thanks!

A: 

You say you like declarative UI but you don't want to use QML? What don't you like about it? Have you used it?

Qt + QML will likely be the most convenient way to develop a GUI application in C++.

Dutch
I have seen some examples of qml, but it's a little weired I think.I like declarative ui like wpf and flex, I want to find some same way in c++ but with the script language do the gui
Martin Luo