views:

71

answers:

1

hello
im looking for a way to make my pyqt interface look nicer by adding a theme to it.
im new to Qt and i still have no idea how to add a custom theme for widgets.. so how is that possible ?
and is it possible through qt designer ?
sorry for my bad english , its my third language. i hope the idea is clear enough .
please let me know if something was unclear ..
thanks in advace

+1  A: 

The most easily implemented method is via Qt's style sheets that are quite similar to CSS. Take a look at the style reference if you need anything more complicated. Qt Designer does give you access to the styleSheet property, although I'd recommend using a separate file for it if you're doing anything non-trivial.

Kaleb Pederson