Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(6) | Call(6) | Derive(0) | Import(0)
src/p/y/pyqt5-HEAD/examples/animation/easing/ui_form.py pyqt5(Download)
self.lineRadio.setMaximumSize(QtCore.QSize(16777215, 40)) self.lineRadio.setLayoutDirection(QtCore.Qt.LeftToRight) self.lineRadio.setChecked(True) self.lineRadio.setObjectName("lineRadio") self.buttonGroup = QtWidgets.QButtonGroup(Form)
src/p/y/pyqt5-HEAD/examples/widgets/groupbox.py pyqt5(Download)
radio3 = QRadioButton("Ra&dio button 3") radio1.setChecked(True) vbox = QVBoxLayout()
radio2 = QRadioButton("Radi&o button 2") radio3 = QRadioButton("Radio &button 3") radio1.setChecked(True) checkBox = QCheckBox("Ind&ependent checkbox") checkBox.setChecked(True)
src/p/y/pyqt5-HEAD/examples/tools/i18n/i18n.py pyqt5(Download)
isometricRadioButton = QRadioButton(self.tr("Isometric")) obliqueRadioButton = QRadioButton(self.tr("Oblique")) perspectiveRadioButton.setChecked(True) self.groupBoxLayout = QVBoxLayout()
src/p/y/pyqt5-HEAD/examples/dialogs/classwizard/classwizard.py pyqt5(Download)
copyCtorCheckBox = QCheckBox("&Generate copy constructor and operator=") defaultCtorRadioButton.setChecked(True) defaultCtorRadioButton.toggled.connect(copyCtorCheckBox.setEnabled)
src/p/y/pyqt5-HEAD/examples/widgets/styles.py pyqt5(Download)
radioButton2 = QRadioButton("Radio button 2") radioButton3 = QRadioButton("Radio button 3") radioButton1.setChecked(True) checkBox = QCheckBox("Tri-state check box")