• 大小: 1.34M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 局域网  聊天  C#  c  源码  

资源简介


   sendUdpClient = new UdpClient();
            // 启动发送线程
            Thread sendThread = new Thread(SendMessage);
            sendThread.Start(string.Format("talk,{0},{1},{2}", DateTime.Now.ToLongTimeString(), selfUserName, txbSend.Text));
            richtxbTalkinfo.AppendText(selfUserName   "    "   DateTime.Now.ToLongTimeString()   Environment.NewLine   txbSend.Text);
            richtxbTalkinfo.AppendText(Environment.NewLine);
            // 将控件内容滚动到当前插入符的位置
            richtxbTalkinfo.ScrollToCaret();
            txbSend.Text = "";
            txbSend.Focus();

资源截图

代码片段和文件信息

/// 
/// 文件名称:Form1.cs
/// 简要描述:本系统是一个C/S结构的客户端端。
///           主要实现的功能是提供用户在线聊天和注册账号;
///           还能提供用户登陆信息和聊天记录的动态查。       
/// 作者:    杨代亮
/// 编写日期:2009-06
/// 



using System;
using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.xml;
using System.Security.Cryptography;
using System.IO;


namespace Client
{
    public partial class Form1 : Form
    {

        public Form1()
        {
            InitializeComponent();
        }

        /// 
        /// 全局变量g_username记录当前登陆账号
        /// 

        publ

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      25214  2009-06-05 07:31  Client\Client\10.ICO

     文件      25214  2003-02-17 00:26  Client\Client\3.ICO

     文件      32054  2002-01-25 16:26  Client\Client\Applications HotSync.ico

     文件      32054  2002-01-25 16:26  Client\Client\Applications MSN.ico

     文件     445440  2009-10-28 00:25  Client\Client\bin\Debug\Client.exe

     文件      73216  2009-10-28 00:25  Client\Client\bin\Debug\Client.pdb

     文件      14328  2009-10-27 23:30  Client\Client\bin\Debug\Client.vshost.exe

     文件        490  2007-07-21 01:33  Client\Client\bin\Debug\Client.vshost.exe.manifest

     文件        137  2009-06-08 16:53  Client\Client\bin\Debug\config.xml

     文件        242  2009-06-07 21:47  Client\Client\bin\Debug\logs\20090607.txt

     文件       3604  2009-06-08 22:52  Client\Client\bin\Debug\logs\20090608.txt

     文件       2310  2009-06-09 11:34  Client\Client\bin\Debug\logs\20090609.txt

     文件        162  2009-06-20 19:49  Client\Client\bin\Debug\logs\20090620.txt

     文件     275080  2006-07-14 15:16  Client\Client\bin\Debug\sound\init.wav

     文件       9220  1998-05-02 04:01  Client\Client\bin\Debug\sound\msg.wav

     文件       4825  1998-10-29 17:43  Client\Client\bin\Debug\sound\newuser.wav

     文件       7390  2009-05-22 14:59  Client\Client\bin\Debug\sound\shake.wav

     文件       4556  2009-09-29 00:00  Client\Client\Client.csproj

     文件      12386  2009-06-08 15:20  Client\Client\Form1.cs

     文件       6056  2009-06-08 07:28  Client\Client\Form1.Designer.cs

     文件      54200  2009-06-08 07:26  Client\Client\Form1.resx

     文件      10904  2009-10-28 00:25  Client\Client\Form2.cs

     文件       8767  2009-06-08 19:09  Client\Client\Form2.Designer.cs

     文件     248906  2009-06-08 19:09  Client\Client\Form2.resx

     文件       7962  2009-06-08 19:08  Client\Client\Form3.cs

     文件       5452  2009-06-07 17:24  Client\Client\Form3.Designer.cs

     文件     248906  2009-06-07 17:24  Client\Client\Form3.resx

     文件      13715  2009-06-09 11:32  Client\Client\Form4.cs

     文件       4739  2009-06-07 15:45  Client\Client\Form4.Designer.cs

     文件      54200  2009-06-07 15:45  Client\Client\Form4.resx

............此处省略76个文件信息

评论

共有 条评论