紀錄一些用法...好難喔QQ
基本的教學可以從 YouTube 頻道搜尋 "PyQt with Python GUI Programming tutorial"
上手很快的~
# 105/7/28 更新: 更改架構-> 讓我自己寫新 QT 比較快
1. "&" 用法:
widthLabel = QLabel("&Width:")
讓 Label 顯示的 Width 變成 Width,同時可以使用快速鍵 alt + w 進行搜尋
基本的教學可以從 YouTube 頻道搜尋 "PyQt with Python GUI Programming tutorial"
上手很快的~
# 105/7/28 更新: 更改架構-> 讓我自己寫新 QT 比較快
#!/usr/bin/python # -*- coding: UTF-8 -*- # Author : MikeChan # Email : m7807031@gmail.com import time, sys, os, threading import numpy as np import matplotlib.pyplot as plt from PyQt4.QtCore import * from PyQt4.QtGui import * class IMU_trace(QWidget): def __init__(self, parent = None): super(IMU_trace, self).__init__(parent) # create Layout and connection self.createLayout() self.createConnection() def createLayout(self): def createConnection(self): if __name__ == "__main__": app=QApplication(sys.argv) show_trace = IMU_trace() show_trace.show() sys.exit(app.exec_())
==========================
註記小教學:1. "&" 用法:
widthLabel = QLabel("&Width:")
讓 Label 顯示的 Width 變成 Width,同時可以使用快速鍵 alt + w 進行搜尋
留言
張貼留言