1 Star 0 Fork 4

AmonYR/Qt_TrainTicketingSystem

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
buywindow.ui 6.36 KB
一键复制 编辑 原始数据 按行查看 历史
Takagi3 提交于 2022-12-14 17:09 . 最终版本
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>BuyWindow</class>
<widget class="QWidget" name="BuyWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>864</width>
<height>548</height>
</rect>
</property>
<property name="windowTitle">
<string>购票窗口</string>
</property>
<property name="windowIcon">
<iconset resource="pictures.qrc">
<normaloff>:/pic/images/icon/logo.png</normaloff>:/pic/images/icon/logo.png</iconset>
</property>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>120</x>
<y>140</y>
<width>81</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string>起始站</string>
</property>
</widget>
<widget class="QLabel" name="label_3">
<property name="geometry">
<rect>
<x>120</x>
<y>210</y>
<width>81</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string>终点站</string>
</property>
</widget>
<widget class="QLabel" name="label_4">
<property name="geometry">
<rect>
<x>120</x>
<y>280</y>
<width>81</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string>余票量</string>
</property>
</widget>
<widget class="QLabel" name="label_5">
<property name="geometry">
<rect>
<x>470</x>
<y>280</y>
<width>81</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string>价格</string>
</property>
</widget>
<widget class="QPushButton" name="buyBtn">
<property name="geometry">
<rect>
<x>370</x>
<y>390</y>
<width>110</width>
<height>50</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>15</pointsize>
</font>
</property>
<property name="text">
<string>购买</string>
</property>
</widget>
<widget class="QPushButton" name="returnBtn">
<property name="geometry">
<rect>
<x>170</x>
<y>390</y>
<width>110</width>
<height>50</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>15</pointsize>
</font>
</property>
<property name="text">
<string>返回</string>
</property>
</widget>
<widget class="QLabel" name="label_6">
<property name="geometry">
<rect>
<x>450</x>
<y>140</y>
<width>101</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string>出发时间</string>
</property>
</widget>
<widget class="QLabel" name="label_7">
<property name="geometry">
<rect>
<x>450</x>
<y>210</y>
<width>101</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string>到达时间</string>
</property>
</widget>
<widget class="QComboBox" name="startComboBox">
<property name="geometry">
<rect>
<x>230</x>
<y>140</y>
<width>140</width>
<height>40</height>
</rect>
</property>
</widget>
<widget class="QComboBox" name="endComboBox">
<property name="geometry">
<rect>
<x>230</x>
<y>210</y>
<width>140</width>
<height>40</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="leftTickets">
<property name="geometry">
<rect>
<x>230</x>
<y>280</y>
<width>140</width>
<height>40</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string></string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLineEdit" name="price">
<property name="geometry">
<rect>
<x>580</x>
<y>275</y>
<width>110</width>
<height>40</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
<widget class="QLineEdit" name="startTime">
<property name="geometry">
<rect>
<x>580</x>
<y>140</y>
<width>220</width>
<height>40</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
<widget class="QLineEdit" name="endTime">
<property name="geometry">
<rect>
<x>580</x>
<y>210</y>
<width>221</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
<widget class="QPushButton" name="collectBtn">
<property name="geometry">
<rect>
<x>570</x>
<y>390</y>
<width>110</width>
<height>50</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>15</pointsize>
</font>
</property>
<property name="text">
<string>收藏</string>
</property>
</widget>
<widget class="QLabel" name="trainNum">
<property name="geometry">
<rect>
<x>390</x>
<y>20</y>
<width>136</width>
<height>39</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>18</pointsize>
</font>
</property>
<property name="text">
<string>G388列车</string>
</property>
</widget>
</widget>
<resources>
<include location="pictures.qrc"/>
</resources>
<connections/>
</ui>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Amon152/qt_-train-ticketing-system-q.git
git@gitee.com:Amon152/qt_-train-ticketing-system-q.git
Amon152
qt_-train-ticketing-system-q
Qt_TrainTicketingSystem
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385