Frage

How can I make a PyQt5 application to look like the same when run on Windows, and Linux? I would prefer the Windows style on both systems.

Thanks

War es hilfreich?

Lösung

You can call QApplication::setStyle("windows") before creating QApplication object to set a style by name. However, Qt on Linux is usually built without modern Windows styles, so it's possible that the best you will accomplish is the classic (old) Windows style, which is not very attractive. You can also try to use "fusion" style or other values that QStyleFactory::keys() returns.

Andere Tipps

You can use existing styles mentioned above

or you can specify the styles of your widgets using Stylesheet, which is quite powerful.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top