实例介绍
本软件仿照QQ设计,界面美观。利用TCP实现了P2P聊天,文件传输和窗口震动。有上线头像变亮,消息弹出窗口提醒。
【实例截图】
【核心代码】
Chat
└── Chat
├── Chat
│ ├── App.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── 2011011457
│ │ │ │ └── friend.txt
│ │ │ ├── 2011011461
│ │ │ │ └── friend.txt
│ │ │ ├── Chat.exe
│ │ │ ├── Chat.exe.config
│ │ │ ├── Chat.pdb
│ │ │ ├── Chat.vshost.exe
│ │ │ ├── Chat.vshost.exe.config
│ │ │ └── Chat.vshost.exe.manifest
│ │ └── Release
│ │ ├── 2011011444
│ │ │ ├── 2011011457.txt
│ │ │ └── friend.txt
│ │ ├── 2011011461
│ │ │ ├── 2011011457.txt
│ │ │ └── friend.txt
│ │ ├── Chat.exe
│ │ ├── Chat.exe.config
│ │ ├── Chat.pdb
│ │ ├── Chat.vshost.exe
│ │ ├── Chat.vshost.exe.config
│ │ └── Chat.vshost.exe.manifest
│ ├── Chat.csproj
│ ├── Chat.csproj.user
│ ├── Class
│ │ ├── Friend.cs
│ │ ├── Program.cs
│ │ ├── PubMethod.cs
│ │ ├── Sever.cs
│ │ └── User.cs
│ ├── Form
│ │ ├── ChatForm.cs
│ │ ├── ChatForm.Designer.cs
│ │ ├── ChatForm.resx
│ │ ├── LoginForm.cs
│ │ ├── LoginForm.Designer.cs
│ │ ├── LoginForm.resx
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── MoveForm.cs
│ │ ├── MoveForm.Designer.cs
│ │ └── MoveForm.resx
│ ├── image
│ │ ├── 02d28f617c78e4408d9ef820a5c56680.png
│ │ ├── 0de5678207fab9234bfec8d8822b80b7_副本.png
│ │ ├── 121.png
│ │ ├── 122.png
│ │ ├── 125cb19a27df27f604c9586465923c18.gif
│ │ ├── 234.png
│ │ ├── 239e8666d922686c165c85b6e547d674_副本.jpg
│ │ ├── 2.png
│ │ ├── 3635aaf2a3f0e2e41069bff3b21127bd.png
│ │ ├── 3635aaf2a3f0e2e41069bff3b21127bd_副本.png
│ │ ├── 666.png
│ │ ├── 7c7b12f879634bf0_副本.png
│ │ ├── 7c7b12f8796398bca6fd02b1aa544bf0.gif
│ │ ├── 7c7b12f8796398bca6fd02b1aa544bf0_副本.png
│ │ ├── 809d7a26263a2eebc7cd0f59dff8ca4e.jpg
│ │ ├── animated_favicon1.gif
│ │ ├── change1.png
│ │ ├── change2.png
│ │ ├── Chatclose1.png
│ │ ├── ChatClose2.png
│ │ ├── f5157c13883a6495b02ba04861fefdcb_副本.png
│ │ ├── favicon.ico
│ │ ├── hao1.png
│ │ ├── hao2.png
│ │ ├── QQ图片20140103020131.jpg
│ │ ├── QQ图片20140103020337.jpg
│ │ ├── suit.jpg
│ │ ├── www.ico.la_19_0X0_1388259931.ico
│ │ ├── www.ico.la_21_32X32_1388237267.ico
│ │ └── 图片1.png
│ ├── MyForm
│ │ ├── ChatItem.cs
│ │ ├── ChatItem.Designer.cs
│ │ ├── ChatItem.resx
│ │ ├── My_Friend_List.cs
│ │ ├── My_Friend_List.Designer.cs
│ │ └── My_Friend_List.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Chat.ChatForm.resources
│ │ │ ├── Chat.ChatItem.resources
│ │ │ ├── Chat.csproj.FileListAbsolute.txt
│ │ │ ├── Chat.csproj.GenerateResource.Cache
│ │ │ ├── Chat.csprojResolveAssemblyReference.cache
│ │ │ ├── Chat.exe
│ │ │ ├── Chat.Load.resources
│ │ │ ├── Chat.Main.resources
│ │ │ ├── Chat.MoveForm.resources
│ │ │ ├── Chat.My_Friend_List.resources
│ │ │ ├── Chat.pdb
│ │ │ ├── Chat.Properties.Resources.resources
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Release
│ │ ├── Chat.ChatForm.resources
│ │ ├── Chat.ChatItem.resources
│ │ ├── Chat.csproj.FileListAbsolute.txt
│ │ ├── Chat.csproj.GenerateResource.Cache
│ │ ├── Chat.csprojResolveAssemblyReference.cache
│ │ ├── Chat.exe
│ │ ├── Chat.Load.resources
│ │ ├── Chat.Main.resources
│ │ ├── Chat.MoveForm.resources
│ │ ├── Chat.My_Friend_List.resources
│ │ ├── Chat.pdb
│ │ ├── Chat.Properties.Resources.resources
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Resources
│ ├── 02d28f617c78e4408d9ef820a5c56680_副本.png
│ ├── b4110bf8ad45267589ad923b1edfdabb.gif
│ ├── ico1.bmp
│ ├── suit.jpg
│ ├── 下线.png
│ ├── 图片2.png
│ ├── 头像1.jpg
│ ├── 猫咪.png
│ └── 缩小按钮.png
├── Chat.sln
└── Chat.v11.suo
20 directories, 126 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论