document.write("");
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页
摘要: 圆角边框周围显示黑色直角 QComboBox 新增 如下设定即可 xxx_source.view().window().setWindowFlag(Qt.WindowType.NoDropShadowWindowHint) xxx_source.view().window().setWindowFl 阅读全文
posted @ 2024-01-18 11:26 人间春风意 阅读(171) 评论(0) 推荐(0)
摘要: 本来这个没有必要写,但是因为写的过程中,按照网上的写法运行,不知道为什么QMenu的右下角有圆角边框与直角背景颜色会覆盖显示 所以还是有必要写一下 menu = QMenu(self.tool_button_menu) menu.setStyleSheet("QMenu{\ border: 1px 阅读全文
posted @ 2024-01-18 10:10 人间春风意 阅读(288) 评论(0) 推荐(0)
摘要: def setColor(self): # 避免窗口置顶后,Dialog被主窗口覆盖,所以需要传递self # 设定默认颜色使用getColor的第一个参数(使用setCurrentColor不生效) # "选择颜色" 为Dialog弹窗的标题 # 设定QColorDialog.ColorDialo 阅读全文
posted @ 2024-01-17 16:15 人间春风意 阅读(181) 评论(0) 推荐(0)
摘要: 设定QComboBox 的背景颜色,边框设定,以及下拉框的背景颜色以及边框设定, selection-background-color 不生效可忽略 xxx_source = QComboBox(self.xxx_frame) xxx_source.setStyleSheet("QComboBox 阅读全文
posted @ 2024-01-16 17:00 人间春风意 阅读(651) 评论(0) 推荐(0)
摘要: 如果是Window self.setWindowIcon(QIcon(get_icon('logo.png'))) 如果是Dialog self.login_dialog.setWindowIcon(QIcon(get_icon('logo.png'))) 阅读全文
posted @ 2024-01-16 16:03 人间春风意 阅读(365) 评论(0) 推荐(0)
摘要: self.setWindowFlag(Qt.WindowType.WindowStaysOnTopHint)即可效果一般,页面会出现闪烁一次, # 置顶按钮 self.top_button = QPushButton('', self) self.top_button.move(self.width 阅读全文
posted @ 2024-01-16 14:59 人间春风意 阅读(824) 评论(0) 推荐(0)
摘要: import os import sys from PyQt6.QtWidgets import QPushButton from PyQt6.QtGui import QIcon from PyQt6.QtCore import QSize # ......中间省略 # 初始化按钮 self.bt 阅读全文
posted @ 2024-01-15 16:51 人间春风意 阅读(252) 评论(0) 推荐(0)
摘要: ALTER TABLE `xxxx`.`xxx` CHARACTER SET = utf8mb4 , COLLATE = utf8mb4_0900_ai_ci ; 阅读全文
posted @ 2024-01-03 10:58 人间春风意 阅读(22) 评论(0) 推荐(0)
摘要: conda create -n 新的虚拟环境名 --clone 旧的虚拟环境名称 conda create -n 新的虚拟环境名 python=3.11.5 conda env remove -n 待删除的虚拟环境名 conda info --envs # 获取虚拟环境列表信息 conda acti 阅读全文
posted @ 2023-12-21 09:38 人间春风意 阅读(60) 评论(0) 推荐(0)
摘要: 背景: docker-compose up -d 运行容器报错:failed to remove root filesystem for xxx: remove /var/lib/docker/devicemapper/mnt/xxx: device or resource busy 解决: (如果 阅读全文
posted @ 2023-12-21 09:13 人间春风意 阅读(305) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页