tags:

views:

114

answers:

4

How to customize WindowsXPStyle in Qt?

I would like to display the menus and menu items as per the MS Office 2003 style in Qt.

+4  A: 

In Qt you can derive from default style classes. You can find the explanation at http://qt.nokia.com/doc/4.6/qstyle.html#creating-a-custom-style

Robbie Groenewoudt
Good link, thanks
stackuser1
A: 

In Qt you can derive from default style classes. You can find the explanation at http://qt.nokia.com/doc/4.6/qstyle.html#creating-a-custom-style

stackuser1
Why did you post a copy of an answer instead of marking the original answer???
Shaihi
+2  A: 

Inherit from QWindowsxp style and override DrawControl as per you requirement.

KhanS
I am also having same question. Let me know any resolution
stackuser1
A: 

Inherit from QWindowsxp style and override DrawControl as per you requirement.

KhanS