• 大小: 3.46M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 网络  通信  

资源简介

1)用户之间的同步/异步的即时文字通讯

2)用户之间的文件传输功能;

3)至少支持在局域网内实现基本文字通信功能,考虑基于互联网的网络通信功能;

4)附加要求:

A,支持音/视频功能;

B,用户之间的通信参考QQ的弹窗效果;

C,发送文件前,应经过接收方的允许后才发送;

D,消息到达提醒功能;


资源截图

代码片段和文件信息

using MyQQ;
using System;
using System.IO;
using System.Net;
using System.Windows.Forms;

namespace chect
{
    public partial class ChatForm : Form
    {
        public string friendId;     // 当前聊天的好友号码
        public string nickName;  // 当前聊天的好友昵称
        public int faceId;       // 当前聊天的好友头像Id  
        public ChatForm()
        {
            InitializeComponent();
        }

        private void ChatForm_Load(object sender System.EventArgs e)
        {
            // 设置窗体标题
            this.Text = string.Format(“与{0}聊天中“ nickName);
            // 设置窗体顶部显示的好友信息
            picFace.Image = ilFaces.Images[faceId];
            lblFriend.Text = string.Format(“{0}({1})“ nickName friendId);
        }

        private void btnSend_Click(object sender System.Even

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

    ..A..H.    135168  2016-06-15 20:02  chect\.vs\chect\v14\.suo

     文件        189  2016-06-02 11:54  chect\chect\App.config

     文件        189  2016-06-02 11:54  chect\chect\bin\Debug\chect.exe.config

     文件      79360  2016-06-15 19:37  chect\chect\bin\Debug\chect.pdb

     文件      22696  2016-06-15 19:47  chect\chect\bin\Debug\chect.vshost.exe

     文件        189  2016-06-02 11:54  chect\chect\bin\Debug\chect.vshost.exe.config

     文件        490  2015-10-30 15:19  chect\chect\bin\Debug\chect.vshost.exe.manifest

     文件     382976  2012-10-17 14:19  chect\chect\bin\Debug\MySql.Data.dll

     文件      40960  2007-09-14 15:51  chect\chect\bin\Debug\SideBar.dll

     文件       2027  2016-06-12 02:38  chect\chect\ChatForm.cs

     文件      14474  2016-06-12 02:28  chect\chect\ChatForm.Designer.cs

     文件    1489330  2016-06-12 02:28  chect\chect\ChatForm.resx

     文件       6042  2016-06-12 01:33  chect\chect\chect.csproj

     文件       4174  2016-06-12 01:33  chect\chect\ConnectServer.cs

     文件        594  2016-06-02 12:14  chect\chect\DBHelper.cs

     文件       1439  2016-06-06 15:54  chect\chect\FacesForm.cs

     文件      10604  2016-06-06 15:54  chect\chect\FacesForm.Designer.cs

     文件    1415261  2016-06-06 15:54  chect\chect\FacesForm.resx

     文件       6253  2016-06-12 10:26  chect\chect\FireReceive.cs

     文件       7387  2016-06-12 02:12  chect\chect\FireSend.cs

     文件       3738  2016-06-15 19:34  chect\chect\LoginForm.cs

     文件       9459  2016-06-15 19:34  chect\chect\loginForm.Designer.cs

     文件      60107  2016-06-15 19:34  chect\chect\loginForm.resx

     文件       6082  2016-06-12 02:42  chect\chect\MainForm.cs

     文件      20876  2016-06-09 14:31  chect\chect\MainForm.Designer.cs

     文件    1861911  2016-06-09 14:29  chect\chect\MainForm.resx

     文件     989827  2016-06-12 02:28  chect\chect\obj\Debug\chect.ChatForm.resources

     文件       1267  2016-06-15 19:47  chect\chect\obj\Debug\chect.csproj.FileListAbsolute.txt

     文件       1335  2016-06-15 19:37  chect\chect\obj\Debug\chect.csproj.GenerateResource.Cache

     文件      17825  2016-06-15 19:32  chect\chect\obj\Debug\chect.csprojResolveAssemblyReference.cache

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

评论

共有 条评论