摘要:
TableWidgetItem的flag如何设置,使得它不能被编辑?TableWidgetItem退出编辑状态 setFlags https://stackoverflow.com/questions/518447/how-can-i-tell-a-qtablewidget-to-end-editi 阅读全文
posted @ 2022-09-25 21:55
bH1pJ
阅读(86)
评论(0)
推荐(0)
摘要:
QTableWidget 合并单元格 参考资料: 1、https://blog.csdn.net/lxj362343/article/details/90480581 2、https://blog.csdn.net/weixin_43450564/article/details/112333233 阅读全文
posted @ 2022-09-25 21:55
bH1pJ
阅读(201)
评论(0)
推荐(0)
摘要:
Python输出当前路径 import os os.getcwd() 阅读全文
posted @ 2022-09-25 21:54
bH1pJ
阅读(30)
评论(0)
推荐(0)
摘要:
Python列出一个文件夹下的所有文件tif文件 import os ans = os.listdir(rootpath) for item in ans: if item.endwith('.tif'): get 阅读全文
posted @ 2022-09-25 21:54
bH1pJ
阅读(88)
评论(0)
推荐(0)
摘要:
Python 时间戳变成字符串 import time stamp = int(time.time()) time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime(stamp)) 阅读全文
posted @ 2022-09-25 21:53
bH1pJ
阅读(261)
评论(0)
推荐(0)
摘要:
pyqtgraph imageview 如何限制缩放,禁止imageView的缩放功能! setMouseEnabled disable zooming zoom pyqtgraph imageview 如何限制缩放 不行: setMouseEnabled 可以了,终于找到答案了: iv = pg. 阅读全文
posted @ 2022-09-25 21:53
bH1pJ
阅读(114)
评论(0)
推荐(0)