Implement a master form window along with controls as you can see in the screen shot
-
Hi,
Can you please share me some examples so that i will try it now ....I am a beginner in qt programming...HI
Creator comes with lots of samples
http://doc.qt.io/qt-5/qtexamplesandtutorials.htmlIf you mean something else, please try to be as clear and
concrete in what you are asking to see samples of. :) -
Hi ,
Which controls i need to use in order to implement above concepts...I have developed using menus and context menu but adding designer class form into qt project its opening in separate window.....i could not understand so.....Do you mean a ribbon like seen in Microsoft products?
-Adding designer class form into qt project its opening in separate window.
Its a bit hard to understand you.
Do you mean your class/widget became a window when you run the app ?
That is often due to not having a parent assigned
likeMyWidget * ptr = new MyWidget( PARENT_POINTER );
-
Hi
there is no ribbon control in Qt
you could use a tabwidget
like here
http://developers-club.com/posts/48963/
(python code but concept is same for c++)Or you can try something premade
https://github.com/hdijkema/QRibbonThere are many samples / ideas/ talk about this on google.
Seems to be something people want from time to time.