-
Notifications
You must be signed in to change notification settings - Fork 11
/
test.py
47 lines (36 loc) · 1.2 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from PyQt5.QtWidgets import QWidget, QLabel
from PyQt5.QtCore import QTimer
class MyWidget(QWidget):
def __init__(self):
super().__init__()
# Khai báo biến
self.frame_count = 0
# Tạo QLabel
self.label = QLabel(self)
self.label.move(50,50)
self.label.adjustSize()
# Khởi tạo QTimer
self.timer = QTimer()
# Thiết lập khe hở cho QTimer
self.timer.setInterval(30) # 30 fps
# Thiết lập khe hở cho kết nối tới slot
self.timer.timeout.connect(self.update_frame)
self.update_label_size()
# Bắt đầu timer
self.timer.start()
def update_label_size(self):
self.label.adjustSize()
def update_frame(self):
# Tăng biến đếm
self.frame_count += 1
# Kiểm tra nếu biến đếm đạt giá trị nhất định
if self.frame_count == 100:
# Đặt văn bản cho nhãn
self.label.setText("Văn bản mới")
self.update_label_size()
import sys
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
a = MyWidget()
a.show()
sys.exit(app.exec_())