This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/SoftwareDesign/Code/2-1/mainwindow.ui

71 lines
1.6 KiB
Text
Raw Normal View History

2022-03-21 12:47:53 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
2022-03-21 14:54:10 +00:00
<width>595</width>
<height>214</height>
2022-03-21 12:47:53 +00:00
</rect>
</property>
<property name="windowTitle">
2022-03-21 14:54:10 +00:00
<string>简易计算器</string>
2022-03-21 12:47:53 +00:00
</property>
2022-03-21 14:54:10 +00:00
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="horizontalLayoutWidget">
<property name="geometry">
<rect>
<x>80</x>
<y>16</y>
<width>411</width>
<height>121</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="spacing">
<number>20</number>
</property>
<item>
<widget class="QSpinBox" name="num1"/>
</item>
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>+</string>
</property>
</widget>
</item>
<item>
<widget class="QSpinBox" name="num2"/>
</item>
<item>
<widget class="QPushButton" name="cal">
<property name="text">
<string>=</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="answer"/>
</item>
</layout>
</widget>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>595</width>
<height>30</height>
</rect>
</property>
</widget>
2022-03-21 12:47:53 +00:00
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>