We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3b0132 commit b33c641Copy full SHA for b33c641
README.md
@@ -27,6 +27,8 @@ from PySide2_Customized_Window import *
27
class MyWindow(CustomizedWindow):
28
def __init__(self):
29
super(MyWindow, self).__init__()
30
+ def MessageHandler(self, hwnd, message, wParam, lParam):
31
+ print(hwnd, message, wParam, lParam)
32
QApplication.setHighDpiScaleFactorRoundingPolicy(Qt.HighDpiScaleFactorRoundingPolicy.PassThrough)
33
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling, True)
34
QApplication.setAttribute(Qt.AA_UseHighDpiPixmaps, True)
0 commit comments