python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to connect signals and slots over different class-instances
I have custom listviews with corresponding custom models. I use QML for the frontend and load the main file with Python and use python for the backend.
The model data of the different models depends h...
123
Votes: 0
Answers: 1
Windows7 64-bit, Pyside6, PyQt6, ImportError: DLL load failed while importing QtCore: The specified procedure could not be found
I installed PySide6 and PyQt6 by following command:
python -m pip install PySide6
python -m pip install PyQt6
But when I try to run import PySide6.QtCore or import PyQt6.QtCore, then I get this erro...
Stepan0806
Votes: 0
Answers: 1
Address text element on .qml
I would like to change a text in my gui. I can address the ListView element for which I have found a solution.
I would also like to address the text element arbitrarily and, for example, replace the t...
TechPirat
Votes: 0
Answers: 1
QMainWindow mouseDoubleClickEvent override not working
I'm using the below code to try and capture double clicks within the main window"
import sys
from PySide6 import QtCore
from PySide6.QtWidgets import (
QApplication,
QGridLayout,
QMai...
joshp
Votes: 0
Answers: 1