字体修改

This commit is contained in:
p57492168 2022-06-13 22:51:59 +08:00
parent 296027d69d
commit 298fa0fadd
2 changed files with 10 additions and 0 deletions

View File

@ -117,6 +117,10 @@ class Ui_MainWindow(object):
self.pushButton_stop.setObjectName("pushButton_stop")
self.verticalLayout_2.addWidget(self.pushButton_stop)
self.pushButton_3 = QtWidgets.QPushButton(self.centralwidget)
font = QtGui.QFont()
font.setFamily("宋体")
font.setPointSize(12)
self.pushButton_3.setFont(font)
self.pushButton_3.setObjectName("pushButton_3")
self.verticalLayout_2.addWidget(self.pushButton_3)
self.pushButton = QtWidgets.QPushButton(self.centralwidget)

View File

@ -198,6 +198,12 @@
</item>
<item>
<widget class="QPushButton" name="pushButton_3">
<property name="font">
<font>
<family>宋体</family>
<pointsize>12</pointsize>
</font>
</property>
<property name="text">
<string>关于我们</string>
</property>