摘要: 如果想创建一个实时改变的事件,最好额外使用一个线程独自处理此事件。 th = threading.Thread(target=self.Display) th.start() 创建线程时传入函数一定要注意,函数名传入不要带括号,跟pyqt的事件绑定一样不能带括号。 阅读全文
posted @ 2020-02-01 18:13 you-wh 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 首先在自己的github上创建仓库;安装git 在所创建仓库的文件夹下打开 git bash,右键会显示git菜单 1. git init //初始化仓库 2. git add .(文件name) //添加文件到本地仓库 3. git commit -m "first commit" //添加文件描 阅读全文
posted @ 2020-02-01 15:08 you-wh 阅读(252) 评论(0) 推荐(0) 编辑
Fork me on GitHub