嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
基于C/S的类似QQ的聊天程序(c#)
基于C/S的类似QQ的聊天程序(c#),一个服务端,一个客户端。服务端提供查询局域网计算机的功能,和消息中转站。客户端主要就是登录开聊。我也是参照了网上的结构,里面加了一些QQ的截图。
.
├── bk
│ ├── myChatClient
│ │ ├── myChatClient
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── 女.BMP
│ │ │ │ ├── 男.BMP
│ │ │ │ ├── 中标.BMP
│ │ │ │ ├── 小标.BMP
│ │ │ │ └── 中标1.BMP
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Resources
│ │ │ │ │ ├── 女.BMP
│ │ │ │ │ ├── 男.BMP
│ │ │ │ │ ├── 小标.BMP
│ │ │ │ │ └── 中标1.BMP
│ │ │ │ ├── myChatClient.exe
│ │ │ │ ├── myChatClient.pdb
│ │ │ │ └── myChatClient.vshost.exe
│ │ │ ├── client_main_form.Designer.cs
│ │ │ ├── client_main_form.cs
│ │ │ ├── client_main_form.resx
│ │ │ ├── myChatClient.csproj
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── myChatClient.Form1.resources
│ │ │ │ ├── myChatClient.Properties.Resources.resources
│ │ │ │ ├── myChatClient.Resources.女.BMP
│ │ │ │ ├── myChatClient.Resources.男.BMP
│ │ │ │ ├── myChatClient.Resources.小标.BMP
│ │ │ │ ├── myChatClient.Resources.中标1.BMP
│ │ │ │ ├── myChatClient.client_main_form.resources
│ │ │ │ ├── myChatClient.csproj.GenerateResource.Cache
│ │ │ │ ├── myChatClient.exe
│ │ │ │ └── myChatClient.pdb
│ │ │ └── myChatClient.csproj.FileList.txt
│ │ ├── myChatClient.sln
│ │ ├── myChatClient.suo
│ │ ├── 女.BMP
│ │ ├── 男.BMP
│ │ ├── 中标.BMP
│ │ └── 小标.BMP
│ └── myServerChat
│ ├── myServerChat
│ │ ├── ChatServer.Designer.cs
│ │ ├── ChatServer.cs
│ │ ├── ChatServer.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ └── 电脑图像.jpg.BMP
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Resources
│ │ │ │ └── 电脑图像.jpg.BMP
│ │ │ ├── myServerChat.exe
│ │ │ ├── myServerChat.pdb
│ │ │ └── myServerChat.vshost.exe
│ │ ├── myServerChat.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── myServerChat.ChatServer.resources
│ │ │ │ ├── myServerChat.Properties.Resources.resources
│ │ │ │ ├── myServerChat.Resources.电脑图像.jpg.BMP
│ │ │ │ ├── myServerChat.csproj.GenerateResource.Cache
│ │ │ │ ├── myServerChat.exe
│ │ │ │ ├── myServerChat.pdb
│ │ │ │ └── myServerChat.start_server.resources
│ │ │ └── myServerChat.csproj.FileList.txt
│ │ ├── start_server.Designer.cs
│ │ ├── start_server.cs
│ │ └── start_server.resx
│ ├── myServerChat.sln
│ ├── myServerChat.suo
│ └── 电脑图像.jpg.BMP
└── 好例子网_基于CS的类似QQ的聊天程序(c#).rar
23 directories, 74 files