摘要: 如何设置QTableWideget和行高和列宽 QTtableView或者QTableWidget的verticalHeader()->setDefaultSectionSize(15)可以设置tableview所有列的默认行高为15。 QTtableView或者QTableWidget的horiz 阅读全文
posted @ 2022-09-25 21:56 bH1pJ 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 如何得到QTableWidgetItem的位置? 如何得到QTableWidgetItem的位置? how to get the position of QTableWidgetItem in table 这里有个方案,使用mapto https://forum.qt.io/topic/114636 阅读全文
posted @ 2022-09-25 21:56 bH1pJ 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(69) 评论(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 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Python输出当前路径 import os os.getcwd() 阅读全文
posted @ 2022-09-25 21:54 bH1pJ 阅读(24) 评论(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 阅读(74) 评论(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 阅读(244) 评论(0) 推荐(0) 编辑
摘要: pyqtgraph imageview 如何限制缩放,禁止imageView的缩放功能! setMouseEnabled disable zooming zoom pyqtgraph imageview 如何限制缩放 不行: setMouseEnabled 可以了,终于找到答案了: iv = pg. 阅读全文
posted @ 2022-09-25 21:53 bH1pJ 阅读(78) 评论(0) 推荐(0) 编辑