Where do I find the Qt Designer as a stand alone application? I can find a lot of stuff to download on http://www.qt.io/download-open-source/ but there is no explicit link for the designer as far as I can see.It is available both as a stand-alone tool as well as integrated in QtCreator.
That's what I tried to do first. According to the hierarchy on the top right in QtCreator, I have MainWindow (QMainWindow) ->toolBar (QToolBar) ->actionScan (QAction). So I wrote this line of code:Just don't connect in QtDesigner, connect in code.
Qt Code:
self.toolBar.actionScan.trigged.connect(scan)To copy to clipboard, switch view to plain text mode
and I got this when I run the code: AttributeError: 'QToolBar' object has no attribute 'actionScan'
Bookmarks