Coder Social home page Coder Social logo

prx001 / qswitchcontrol Goto Github PK

View Code? Open in Web Editor NEW
14.0 14.0 3.0 95 KB

An easy-to-use and modern toggle switch for Qt Python binding PyQt (PyQt5) :package:

License: MIT License

Python 100.00%
pyqt pyqt5 python python3 qt qt5 qt5-custom-widgets switch switch-button toggle toggle-button toggle-buttons toggle-switch ui-components

qswitchcontrol's People

Contributors

prx001 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

qswitchcontrol's Issues

Cant run App Error: QWidget: Must construct a QApplication before a QWidget

I currently start the programm like so:

class MainWindow(QMainWindow, Ui_MainWindow):
    def __init__(self):
        super().__init__()
        self.setupUi(self)
    
     def initUI(self):
        print("UI inited: MainWindow")
        self.SaveButton.clicked.connect(self.OnBttClicked_Save)
        switch_control = SwitchControl()
        hbox = QHBoxLayout()
        hbox.addWidget(switch_control, Qt.AlignCenter, Qt.AlignCenter)     
        self.setLayout(hbox)


if __name__ == "__main__":
    app = QApplication([])
    
    form_MainWindow = MainWindow() ###<-- in here a try to create the SwitchControl - like in your example
    form_MainWindow.show()

    sys.exit(app.exec())

Ui_MainWindow is a Window made in QT Designer:

class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
           if not MainWindow.objectName():
                   MainWindow.setObjectName(u"MainWindow")
           MainWindow.resize(823, 656)
           .
           . #Design code goes here
           .

I allways get the Exception: QWidget: Must construct a QApplication before a QWidget

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.