嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#语言编写的仿QQ聊天程序,用VS可以看到附带的全部源代码。
.
├── C#编写的仿QQ聊天程序_仿QQ聊天程序.rar
└── 仿QQ聊天程序(C#源码)
├── QQ
│ ├── 1.ico
│ ├── 2.ico
│ ├── App.ico
│ ├── App1.ico
│ ├── AssemblyInfo.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── MessageServer.cs
│ ├── MsgSend.cs
│ ├── MsgSend.resx
│ ├── Online.cs
│ ├── Online.resx
│ ├── QQ.csproj
│ ├── QQ.csproj.user
│ ├── QQ.sln
│ ├── QQ.suo
│ ├── about.cs
│ ├── about.resx
│ ├── bin
│ │ └── Debug
│ │ ├── 00000000
│ │ │ └── FriendInf.dat
│ │ ├── 00000005
│ │ │ └── FriendInf.dat
│ │ ├── QQ.exe
│ │ ├── QQ.pdb
│ │ ├── QQloginCont.dll
│ │ ├── QQloginCont.pdb
│ │ ├── QQuser.dat
│ │ ├── SerInf
│ │ │ ├── OnlineInf.dat
│ │ │ └── SerInf.dat
│ │ ├── online.dat
│ │ └── sound
│ │ ├── Call.wav
│ │ ├── Folder.wav
│ │ ├── Global.wav
│ │ ├── Msg.wav
│ │ ├── Ring.wav
│ │ └── System.wav
│ ├── main.cs
│ ├── main.resx
│ └── obj
│ └── Debug
│ ├── QQ.Form1.resources
│ ├── QQ.MsgSend.resources
│ ├── QQ.Online.resources
│ ├── QQ.about.resources
│ ├── QQ.exe
│ ├── QQ.main.resources
│ ├── QQ.pdb
│ ├── QQ.projdata
│ ├── QQ.projdata1
│ ├── TempPE
│ └── temp
├── QQ_Data.MDF
├── QQ_Log.LDF
├── QQloginCont
│ ├── AssemblyInfo.cs
│ ├── CheckOutIpPoint.cs
│ ├── CheckOutNum.cs
│ ├── Class1.cs
│ ├── Login.cs
│ ├── Online.cs
│ ├── Online.resx
│ ├── PlaySound.cs
│ ├── QQloginCont.csproj
│ ├── QQloginCont.csproj.user
│ ├── Regx.cs
│ ├── SendMessage.cs
│ ├── ShareDate.cs
│ ├── TrafficMsg.cs
│ ├── UserInf.cs
│ ├── bin
│ │ └── Debug
│ │ ├── QQloginCont.dll
│ │ └── QQloginCont.pdb
│ ├── getSerInf.cs
│ └── obj
│ └── Debug
│ ├── QQloginCont.dll
│ ├── QQloginCont.pdb
│ ├── QQloginCont.projdata
│ ├── QQloginCont.projdata1
│ ├── TempPE
│ └── temp
├── qqServer
│ ├── qqServer
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form2.Designer.cs
│ │ ├── Form2.cs
│ │ ├── Form2.resx
│ │ ├── Form3.Designer.cs
│ │ ├── Form3.cs
│ │ ├── Form3.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── Icon1.ico
│ │ │ ├── Thumbs.db
│ │ │ ├── desable_server.ico
│ │ │ ├── enable_server.ico
│ │ │ ├── logo.jpg
│ │ │ ├── server.ico
│ │ │ ├── start.jpg
│ │ │ └── stop.jpg
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── config
│ │ │ │ ├── dataConfig.dat
│ │ │ │ └── ipConfig.dat
│ │ │ ├── img
│ │ │ │ ├── start.jpg
│ │ │ │ └── stop.jpg
│ │ │ ├── onlineinf
│ │ │ │ └── onLine.xml
│ │ │ ├── qqServer.exe
│ │ │ ├── qqServer.pdb
│ │ │ ├── qqServer.vshost.exe
│ │ │ ├── qqServerManger.dll
│ │ │ ├── qqServerManger.pdb
│ │ │ └── temp
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── qqServer.Form1.resources
│ │ │ │ ├── qqServer.Form2.resources
│ │ │ │ ├── qqServer.Form3.resources
│ │ │ │ ├── qqServer.Properties.Resources.resources
│ │ │ │ ├── qqServer.csproj.GenerateResource.Cache
│ │ │ │ ├── qqServer.exe
│ │ │ │ └── qqServer.pdb
│ │ │ └── qqServer.csproj.FileList.txt
│ │ ├── qqServer.csproj
│ │ └── server.ico
│ ├── qqServer.sln
│ └── qqServer.suo
└── qqServerManger
├── Class1.cs
├── Properties
│ └── AssemblyInfo.cs
├── Server.cs
├── SqlConnectionTest.cs
├── XmlFileOp.cs
├── XmlOperate.cs
├── Zone.cs
├── bin
│ └── Debug
│ ├── qqServerManger.dll
│ └── qqServerManger.pdb
├── obj
│ ├── Debug
│ │ ├── Refactor
│ │ ├── TempPE
│ │ ├── qqServerManger.dll
│ │ └── qqServerManger.pdb
│ └── qqServerManger.csproj.FileList.txt
├── opDate.cs
├── qSaveConfigServer.cs
├── qqServerManger.csproj
└── regx.cs
41 directories, 133 files