1 Star 0 Fork 1

PassionateSleeper/pyqt5socket实现CS通信

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1.ui 2.56 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
<width>765</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>服务器</string>
</property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="animated">
<bool>true</bool>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QPushButton" name="button">
<property name="geometry">
<rect>
<x>210</x>
<y>50</y>
<width>94</width>
<height>32</height>
</rect>
</property>
<property name="text">
<string>开始</string>
</property>
</widget>
<widget class="QLabel" name="state">
<property name="geometry">
<rect>
<x>500</x>
<y>60</y>
<width>60</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>未运行</string>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>350</x>
<y>130</y>
<width>91</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>16</pointsize>
</font>
</property>
<property name="text">
<string>接收信息</string>
</property>
</widget>
<widget class="QTextBrowser" name="rec">
<property name="geometry">
<rect>
<x>180</x>
<y>180</y>
<width>421</width>
<height>61</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>350</x>
<y>260</y>
<width>101</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>16</pointsize>
</font>
</property>
<property name="text">
<string>发送信息</string>
</property>
</widget>
<widget class="QTextBrowser" name="send">
<property name="geometry">
<rect>
<x>180</x>
<y>310</y>
<width>421</width>
<height>151</height>
</rect>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>765</width>
<height>26</height>
</rect>
</property>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/PassionateSleeper/pyqt5_socket_CS.git
git@gitee.com:PassionateSleeper/pyqt5_socket_CS.git
PassionateSleeper
pyqt5_socket_CS
pyqt5socket实现CS通信
master

搜索帮助