資源簡介
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個文件信息
評論
共有 條評論