Style of the widgets of a program using PyQt5

0

I've been creating some kind of text editing software using python3.5 and PyQt5, and at the stage of creating the packages I came to realize that the development version, which used a PyQt5 package managed by the operating system, had a different look of that obtained by the creation of the package, which used a PyQt5 package managed by the pip. After a search, find out that you could use the QStyleFactory.keys method to list all styles of widgets available, and the result of this method in the Pip package PyQt5 was only ['Windows', 'Fusion'], none of these being native to my OS.

  • Are there any other complementary packages or some other procedure that allows the PyQt5 pip package to use other styles of widgets?
asked by anonymous 28.02.2017 / 22:28

1 answer

0

Well, I found this repository that has other widget styles that can be loaded, and stylesheets that can modify widget styles.

    
10.03.2017 / 22:17