• 大小: 0.53M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-23
  • 语言: C#
  • 标签: tcp  通信  

资源简介

客户端实现了 动态折线图(数据来自服务端广播)

资源截图

代码片段和文件信息

using SeeSharpTools.JY.Socket.ValueHelper;
using System;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Windows.Forms;

namespace TCPdemo
{
    public partial class Client : Form
    {
        private System.Net.Sockets.TcpClient client = null;
        bool check = true;
        public Client()
        {
            InitializeComponent();
        }

        private void btn_link_Client_Click(object sender EventArgs e)
        {
            if (client != null)
            {
                if (client.Connected == true)
                    return;
            }
            IPAddress myIPClient = IPAddress.Parse(this.textIP_Client.Text);
            IPEndPoint MyServer = new IPEndPoint(myIPClient Int32.Parse(this.textPort_Client.Text));
            client = new TcpClient();
            try
            {
                client.Connect(MyServer);
                this.textState_Client.Text = “Connect Success!“;
             

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-04-10 16:38  .vs\
     目录           0  2020-04-10 16:25  .vs\TCPdemo\
     目录           0  2017-10-05 20:17  .vs\TCPdemo\v14\
     文件       47104  2017-10-20 08:54  .vs\TCPdemo\v14\.suo
     目录           0  2020-04-10 16:25  .vs\TCPdemo\v16\
     文件       56320  2020-04-10 16:38  .vs\TCPdemo\v16\.suo
     目录           0  2020-04-10 16:25  .vs\TCPdemo\v16\Server\
     目录           0  2020-04-10 16:38  .vs\TCPdemo\v16\Server\sqlite3\
     文件           0  2020-04-10 16:25  .vs\TCPdemo\v16\Server\sqlite3\db.lock
     文件      643072  2020-04-10 16:36  .vs\TCPdemo\v16\Server\sqlite3\storage.ide
     文件         141  2020-04-10 16:38  .vs\VSWorkspaceState.json
     文件      221184  2020-04-10 16:38  .vs\slnx.sqlite
     目录           0  2020-07-30 16:10  DTAR_08E86330_4835_4B5C_9E5A_61F37AE1A077_DTAR\
     目录           0  2020-04-10 16:36  TCPdemo\
     文件        9150  2017-10-06 20:21  TCPdemo\Client.Designer.cs
     文件        3233  2017-10-20 08:52  TCPdemo\Client.cs
     文件        5817  2017-10-06 20:21  TCPdemo\Client.resx
     文件         489  2017-10-06 20:21  TCPdemo\Program.cs
     目录           0  2017-10-05 20:17  TCPdemo\Properties\
     文件        1322  2017-10-05 20:17  TCPdemo\Properties\AssemblyInfo.cs
     文件        2827  2017-10-05 20:17  TCPdemo\Properties\Resources.Designer.cs
     文件        5612  2017-10-05 20:17  TCPdemo\Properties\Resources.resx
     文件        1094  2017-10-05 20:17  TCPdemo\Properties\Settings.Designer.cs
     文件         249  2017-10-05 20:17  TCPdemo\Properties\Settings.settings
     文件        4981  2017-10-06 20:34  TCPdemo\Server.Designer.cs
     文件        6040  2017-10-20 08:52  TCPdemo\Server.cs
     文件       16611  2017-10-06 20:34  TCPdemo\Server.resx
     文件       19432  2017-10-06 20:24  TCPdemo\Socket.ValueHelper.cs
     文件        4375  2020-04-10 16:36  TCPdemo\TCPdemo.csproj
     目录           0  2017-10-06 20:14  TCPdemo\bin\
     目录           0  2017-10-06 20:39  TCPdemo\bin\Debug\
............此处省略39个文件信息

评论

共有 条评论