天宫鹤

2024年8月11日

Python使用PyCharm+PySide6+Pandas创建QTableView显示Excel工作簿数据

摘要: import sys import warnings from pathlib import Path import pandas as pd from PySide6 import QtWidgets from PySide6.QtCore import Qt from PySide6.QtGui 阅读全文

posted @ 2024-08-11 18:51 GoGrid 阅读(219) 评论(0) 推荐(0) 编辑

Python使用PyCharm+PySide6创建一个简单的Qt Quick应用程序-hello_world_quick.py(读取qml文件方式)

摘要: """Create a Simple Quick Application""" import sys from pathlib import Path from PySide6.QtGui import QGuiApplication from PySide6.QtQml import QQmlAp 阅读全文

posted @ 2024-08-11 09:13 GoGrid 阅读(171) 评论(0) 推荐(0) 编辑

Python使用PyCharm+PySide6创建一个简单的Qt Quick应用程序-hello_world_quick.py

摘要: """Create a Simple Quick Application""" import sys from PySide6.QtGui import QGuiApplication from PySide6.QtQml import QQmlApplicationEngine QML = """ 阅读全文

posted @ 2024-08-11 08:06 GoGrid 阅读(36) 评论(0) 推荐(0) 编辑

Python使用PyCharm创建一个简单的Qt Widgets应用程序-hello_world.py

摘要: """ Create a Simple Qt Widgets Application """ import random import sys from PySide6 import QtCore, QtWidgets # Main Class class MyWidget(QtWidgets.QW 阅读全文

posted @ 2024-08-11 07:52 GoGrid 阅读(34) 评论(0) 推荐(0) 编辑

导航