在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → winform C# 高仿QQ

winform C# 高仿QQ

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:12.03M
  • 下载次数:18
  • 浏览次数:176
  • 发布时间:2020-11-02
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
Winform ,C#高仿QQ,界面美观。 自定义消息包,方便扩张,界面高仿QQ
【实例截图】
【核心代码】
QQ
└── QQ
├── Common
│   ├── Args
│   │   └── TCPDataEventArgs.cs
│   ├── Base
│   │   └── PackageBase.cs
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   └── Common.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   └── Common.pdb
│   ├── Common.csproj
│   ├── Dlls
│   │   └── Newtonsoft.Json.dll
│   ├── Enum
│   │   └── EPackageHead.cs
│   ├── obj
│   │   ├── Debug
│   │   │   ├── Common.csproj.FileListAbsolute.txt
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   │   └── Release
│   │   ├── Common.csproj.FileListAbsolute.txt
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   └── DesignTimeResolveAssemblyReferencesInput.cache
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── Sock
│   └── SockTCP.cs
├── DB
│   ├── MyQQ_log.ldf
│   └── MyQQ.mdf
├── Entity
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── Entity.dll
│   │   │   └── Entity.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── Entity.dll
│   │   └── Entity.pdb
│   ├── DB
│   │   ├── BloodType.cs
│   │   ├── FriendShipPolicy.cs
│   │   ├── Messages.cs
│   │   ├── Star.cs
│   │   └── Users.cs
│   ├── Entity.csproj
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Entity.csproj.FileListAbsolute.txt
│   │   │   ├── Entity.dll
│   │   │   ├── Entity.pdb
│   │   │   └── ResolveAssemblyReference.cache
│   │   └── Release
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── Entity.csproj.FileListAbsolute.txt
│   │   ├── Entity.dll
│   │   ├── Entity.pdb
│   │   └── ResolveAssemblyReference.cache
│   ├── Package
│   │   ├── PackageAddFriend.cs
│   │   ├── PackageDeleteFriend.cs
│   │   ├── PackageFriendInfo.cs
│   │   ├── PackageFriendList.cs
│   │   ├── PackageLogin.cs
│   │   ├── PackageMessage.cs
│   │   ├── PackageOffLineMessage.cs
│   │   ├── PackageRegister.cs
│   │   ├── PackageSearchUser.cs
│   │   ├── PackageUpdateMessageState.cs
│   │   ├── PackageUserInfo.cs
│   │   └── PackageUserStatus.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── QQControls
│   ├── bin
│   │   ├── Debug
│   │   │   ├── QQControls.dll
│   │   │   └── QQControls.pdb
│   │   └── Release
│   │   ├── QQControls.dll
│   │   └── QQControls.pdb
│   ├── Images.Designer.cs
│   ├── Images.resx
│   ├── LoginFrame.cs
│   ├── LoginFrame.Designer.cs
│   ├── LoginFrame.resx
│   ├── MainFrame.cs
│   ├── MainFrame.Designer.cs
│   ├── MainFrame.resx
│   ├── MyButton.cs
│   ├── MyButton.Designer.cs
│   ├── MyButton.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   ├── GenerateResource.write.1.tlog
│   │   │   ├── QQControls.csproj.FileListAbsolute.txt
│   │   │   ├── QQControls.dll
│   │   │   ├── QQControls.Images.resources
│   │   │   ├── QQControls.LoginFrame.resources
│   │   │   ├── QQControls.MainFrame.resources
│   │   │   ├── QQControls.MyButton.resources
│   │   │   ├── QQControls.pdb
│   │   │   ├── QQControls.ShowHead.resources
│   │   │   ├── QQControls.ToolButton.resources
│   │   │   └── TempPE
│   │   │   └── Images.Designer.cs.dll
│   │   ├── Release
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   ├── GenerateResource.write.1.tlog
│   │   │   ├── QQControls.csproj.FileListAbsolute.txt
│   │   │   ├── QQControls.dll
│   │   │   ├── QQControls.Images.resources
│   │   │   ├── QQControls.LoginFrame.resources
│   │   │   ├── QQControls.MainFrame.resources
│   │   │   ├── QQControls.MyButton.resources
│   │   │   ├── QQControls.pdb
│   │   │   ├── QQControls.ShowHead.resources
│   │   │   ├── QQControls.ToolButton.resources
│   │   │   └── TempPE
│   │   │   └── Images.Designer.cs.dll
│   │   └── x86
│   │   └── Debug
│   │   ├── GenerateResource.read.1909.tlog
│   │   ├── GenerateResource.read.190.tlog
│   │   ├── GenerateResource.read.191.tlog
│   │   ├── GenerateResource.read.1922.tlog
│   │   ├── GenerateResource.read.194.tlog
│   │   ├── GenerateResource.read.2001.tlog
│   │   ├── GenerateResource.read.2439.tlog
│   │   ├── GenerateResource.read.2449.tlog
│   │   ├── GenerateResource.read.2477.tlog
│   │   ├── GenerateResource.write.1909.tlog
│   │   ├── GenerateResource.write.190.tlog
│   │   ├── GenerateResource.write.191.tlog
│   │   ├── GenerateResource.write.1922.tlog
│   │   ├── GenerateResource.write.192.tlog
│   │   ├── GenerateResource.write.193.tlog
│   │   ├── GenerateResource.write.194.tlog
│   │   ├── GenerateResource.write.2001.tlog
│   │   ├── GenerateResource.write.2041.tlog
│   │   ├── GenerateResource.write.2053.tlog
│   │   ├── GenerateResource.write.2054.tlog
│   │   ├── GenerateResource.write.210.tlog
│   │   ├── GenerateResource.write.2127.tlog
│   │   ├── GenerateResource.write.2439.tlog
│   │   ├── GenerateResource.write.2449.tlog
│   │   ├── GenerateResource.write.2451.tlog
│   │   ├── GenerateResource.write.2477.tlog
│   │   ├── GenerateResource.write.312.tlog
│   │   ├── GenerateResource.write.332.tlog
│   │   ├── GenerateResource.write.333.tlog
│   │   ├── GenerateResource.write.334.tlog
│   │   ├── GenerateResource.write.335.tlog
│   │   └── GenerateResource.write.336.tlog
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── QQControls.csproj
│   ├── Resources
│   │   ├── AddAccountBtn_Down.png
│   │   ├── AddAccountBtn_mouseover.png
│   │   ├── AddAccountBtn.png
│   │   ├── All_window_sizeGripFile.png
│   │   ├── btn_close_disable.png
│   │   ├── btn_close_down.png
│   │   ├── btn_close_highlight.png
│   │   ├── btn_close_normal.png
│   │   ├── btn_max_down.png
│   │   ├── btn_max_highlight.png
│   │   ├── btn_max_normal.png
│   │   ├── btn_mini_down.png
│   │   ├── btn_mini_highlight.png
│   │   ├── btn_mini_normal.png
│   │   ├── btn_restore_down.png
│   │   ├── btn_restore_highlight.png
│   │   ├── btn_restore_normal.png
│   │   ├── ContactHeadBg_Hightlight.png
│   │   ├── ContactHeadBg_Normal.png
│   │   ├── login_btn_down.png
│   │   ├── login_btn_focus.png
│   │   ├── login_btn_highlight.png
│   │   ├── login_btn_normal.png
│   │   ├── LoginPanel_window_windowBkg.png
│   │   ├── main_bluelight_bkg.png
│   │   ├── mainpanel_tabctrl_background.jpg
│   │   ├── MainPanel_window_windowBkg.bmp
│   │   ├── Main_Title.png
│   │   └── normal.png
│   ├── ShowHead.cs
│   ├── ShowHead.Designer.cs
│   ├── ShowHead.resx
│   ├── ToolButton.cs
│   ├── ToolButton.Designer.cs
│   ├── ToolButton.resx
│   └── Win32.cs
├── QQIM
│   ├── App.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── ALQQControl.dll
│   │   │   ├── ClientView.exe
│   │   │   ├── ClientView.exe.config
│   │   │   ├── ClientView.pdb
│   │   │   ├── ClientView.vshost.exe
│   │   │   ├── ClientView.vshost.exe.config
│   │   │   ├── ClientView.vshost.exe.manifest
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── Entity.dll
│   │   │   ├── Entity.pdb
│   │   │   ├── images
│   │   │   │   ├── aio_littletoolbar_arrow.png
│   │   │   │   ├── aio_quickbar_cut.png
│   │   │   │   ├── aio_quickbar_face.png
│   │   │   │   ├── aio_quickbar_flirtationface.png
│   │   │   │   ├── aio_quickbar_font.png
│   │   │   │   ├── aio_quickbar_register.png
│   │   │   │   ├── aio_quickbar_richface.png
│   │   │   │   ├── aio_quickbar_screen1.png
│   │   │   │   ├── aio_quickbar_screen2.png
│   │   │   │   ├── aio_quickbar_sendpic.png
│   │   │   │   ├── aio_quickbar_twitter.png
│   │   │   │   ├── aio_toolbar_arrow.png
│   │   │   │   ├── app
│   │   │   │   │   ├── 3366.png
│   │   │   │   │   ├── mainmenu_imqqcom.png
│   │   │   │   │   ├── my_tencent.png
│   │   │   │   │   ├── news_subscripton.png
│   │   │   │   │   ├── q_zone.png
│   │   │   │   │   ├── soso_group_rate.png
│   │   │   │   │   └── SoSo.png
│   │   │   │   ├── BCF_Title16.ico
│   │   │   │   ├── buddy
│   │   │   │   │   ├── aio_quickbar_cut.png
│   │   │   │   │   ├── aio_quickbar_face.png
│   │   │   │   │   ├── aio_quickbar_flirtationface.png
│   │   │   │   │   ├── aio_quickbar_font.png
│   │   │   │   │   ├── aio_quickbar_register.png
│   │   │   │   │   ├── aio_quickbar_richface.png
│   │   │   │   │   ├── aio_quickbar_sendpic.png
│   │   │   │   │   ├── aio_quickbar_twitter.png
│   │   │   │   │   └── SoSo.png
│   │   │   │   ├── default.gif
│   │   │   │   ├── grade.png
│   │   │   │   ├── Head
│   │   │   │   │   ├── 100.png
│   │   │   │   │   ├── 101.png
│   │   │   │   │   ├── 102.png
│   │   │   │   │   ├── 103.png
│   │   │   │   │   ├── 104.png
│   │   │   │   │   ├── 105.png
│   │   │   │   │   ├── 106.png
│   │   │   │   │   ├── 107.png
│   │   │   │   │   ├── 108.png
│   │   │   │   │   ├── 109.png
│   │   │   │   │   ├── 10.png
│   │   │   │   │   ├── 110.png
│   │   │   │   │   ├── 111.png
│   │   │   │   │   ├── 112.png
│   │   │   │   │   ├── 113.png
│   │   │   │   │   ├── 114.png
│   │   │   │   │   ├── 115.png
│   │   │   │   │   ├── 116.png
│   │   │   │   │   ├── 117.png
│   │   │   │   │   ├── 118.png
│   │   │   │   │   ├── 119.png
│   │   │   │   │   ├── 11.png
│   │   │   │   │   ├── 120.png
│   │   │   │   │   ├── 121.png
│   │   │   │   │   ├── 122.png
│   │   │   │   │   ├── 123.png
│   │   │   │   │   ├── 124.png
│   │   │   │   │   ├── 125.png
│   │   │   │   │   ├── 126.png
│   │   │   │   │   ├── 127.png
│   │   │   │   │   ├── 128.png
│   │   │   │   │   ├── 129.png
│   │   │   │   │   ├── 12.png
│   │   │   │   │   ├── 130.png
│   │   │   │   │   ├── 131.png
│   │   │   │   │   ├── 132.png
│   │   │   │   │   ├── 133.png
│   │   │   │   │   ├── 134.png
│   │   │   │   │   ├── 135.png
│   │   │   │   │   ├── 136.png
│   │   │   │   │   ├── 137.png
│   │   │   │   │   ├── 138.png
│   │   │   │   │   ├── 139.PNG
│   │   │   │   │   ├── 13.png
│   │   │   │   │   ├── 140.PNG
│   │   │   │   │   ├── 141.PNG
│   │   │   │   │   ├── 142.PNG
│   │   │   │   │   ├── 143.PNG
│   │   │   │   │   ├── 144.PNG
│   │   │   │   │   ├── 145.PNG
│   │   │   │   │   ├── 146.PNG
│   │   │   │   │   ├── 147.PNG
│   │   │   │   │   ├── 148.PNG
│   │   │   │   │   ├── 149.PNG
│   │   │   │   │   ├── 14.png
│   │   │   │   │   ├── 150.PNG
│   │   │   │   │   ├── 151.PNG
│   │   │   │   │   ├── 152.PNG
│   │   │   │   │   ├── 153.PNG
│   │   │   │   │   ├── 154.PNG
│   │   │   │   │   ├── 155.PNG
│   │   │   │   │   ├── 156.PNG
│   │   │   │   │   ├── 157.PNG
│   │   │   │   │   ├── 158.PNG
│   │   │   │   │   ├── 159.PNG
│   │   │   │   │   ├── 15.png
│   │   │   │   │   ├── 160.PNG
│   │   │   │   │   ├── 161.PNG
│   │   │   │   │   ├── 162.PNG
│   │   │   │   │   ├── 163.PNG
│   │   │   │   │   ├── 164.PNG
│   │   │   │   │   ├── 165.PNG
│   │   │   │   │   ├── 166.PNG
│   │   │   │   │   ├── 167.PNG
│   │   │   │   │   ├── 168.PNG
│   │   │   │   │   ├── 169.PNG
│   │   │   │   │   ├── 16.png
│   │   │   │   │   ├── 170.PNG
│   │   │   │   │   ├── 171.PNG
│   │   │   │   │   ├── 172.PNG
│   │   │   │   │   ├── 173.PNG
│   │   │   │   │   ├── 174.PNG
│   │   │   │   │   ├── 175.PNG
│   │   │   │   │   ├── 176.PNG
│   │   │   │   │   ├── 177.PNG
│   │   │   │   │   ├── 178.PNG
│   │   │   │   │   ├── 179.PNG
│   │   │   │   │   ├── 17.png
│   │   │   │   │   ├── 180.PNG
│   │   │   │   │   ├── 181.png
│   │   │   │   │   ├── 182.png
│   │   │   │   │   ├── 183.png
│   │   │   │   │   ├── 184.png
│   │   │   │   │   ├── 185.png
│   │   │   │   │   ├── 186.png
│   │   │   │   │   ├── 187.png
│   │   │   │   │   ├── 188.png
│   │   │   │   │   ├── 189.png
│   │   │   │   │   ├── 18.png
│   │   │   │   │   ├── 190.png
│   │   │   │   │   ├── 191.png
│   │   │   │   │   ├── 192.png
│   │   │   │   │   ├── 193.png
│   │   │   │   │   ├── 194.png
│   │   │   │   │   ├── 195.png
│   │   │   │   │   ├── 196.png
│   │   │   │   │   ├── 197.png
│   │   │   │   │   ├── 198.png
│   │   │   │   │   ├── 199.png
│   │   │   │   │   ├── 19.png
│   │   │   │   │   ├── 1.png
│   │   │   │   │   ├── 200.png
│   │   │   │   │   ├── 201.png
│   │   │   │   │   ├── 20.png
│   │   │   │   │   ├── 21.png
│   │   │   │   │   ├── 22.png
│   │   │   │   │   ├── 23.png
│   │   │   │   │   ├── 24.png
│   │   │   │   │   ├── 25.png
│   │   │   │   │   ├── 26.png
│   │   │   │   │   ├── 27.png
│   │   │   │   │   ├── 28.png
│   │   │   │   │   ├── 29.png
│   │   │   │   │   ├── 2.png
│   │   │   │   │   ├── 30.png
│   │   │   │   │   ├── 31.png
│   │   │   │   │   ├── 32.png
│   │   │   │   │   ├── 33.png
│   │   │   │   │   ├── 34.png
│   │   │   │   │   ├── 35.png
│   │   │   │   │   ├── 36.png
│   │   │   │   │   ├── 37.png
│   │   │   │   │   ├── 38.png
│   │   │   │   │   ├── 39.png
│   │   │   │   │   ├── 3.png
│   │   │   │   │   ├── 40.png
│   │   │   │   │   ├── 41.png
│   │   │   │   │   ├── 42.png
│   │   │   │   │   ├── 43.png
│   │   │   │   │   ├── 44.png
│   │   │   │   │   ├── 45.png
│   │   │   │   │   ├── 46.png
│   │   │   │   │   ├── 47.png
│   │   │   │   │   ├── 48.png
│   │   │   │   │   ├── 49.png
│   │   │   │   │   ├── 4.png
│   │   │   │   │   ├── 50.png
│   │   │   │   │   ├── 51.png
│   │   │   │   │   ├── 52.png
│   │   │   │   │   ├── 53.png
│   │   │   │   │   ├── 54.png
│   │   │   │   │   ├── 55.png
│   │   │   │   │   ├── 56.png
│   │   │   │   │   ├── 57.png
│   │   │   │   │   ├── 58.png
│   │   │   │   │   ├── 59.png
│   │   │   │   │   ├── 5.png
│   │   │   │   │   ├── 60.png
│   │   │   │   │   ├── 61.png
│   │   │   │   │   ├── 62.png
│   │   │   │   │   ├── 63.png
│   │   │   │   │   ├── 64.png
│   │   │   │   │   ├── 65.png
│   │   │   │   │   ├── 66.png
│   │   │   │   │   ├── 67.png
│   │   │   │   │   ├── 68.png
│   │   │   │   │   ├── 69.png
│   │   │   │   │   ├── 6.png
│   │   │   │   │   ├── 70.png
│   │   │   │   │   ├── 71.png
│   │   │   │   │   ├── 72.png
│   │   │   │   │   ├── 73.png
│   │   │   │   │   ├── 74.png
│   │   │   │   │   ├── 75.png
│   │   │   │   │   ├── 76.png
│   │   │   │   │   ├── 77.png
│   │   │   │   │   ├── 78.png
│   │   │   │   │   ├── 79.png
│   │   │   │   │   ├── 7.png
│   │   │   │   │   ├── 80.png
│   │   │   │   │   ├── 81.png
│   │   │   │   │   ├── 82.png
│   │   │   │   │   ├── 83.png
│   │   │   │   │   ├── 84.png
│   │   │   │   │   ├── 85.png
│   │   │   │   │   ├── 86.png
│   │   │   │   │   ├── 87.png
│   │   │   │   │   ├── 88.png
│   │   │   │   │   ├── 89.png
│   │   │   │   │   ├── 8.png
│   │   │   │   │   ├── 90.png
│   │   │   │   │   ├── 91.png
│   │   │   │   │   ├── 92.png
│   │   │   │   │   ├── 93.png
│   │   │   │   │   ├── 94.png
│   │   │   │   │   ├── 95.png
│   │   │   │   │   ├── 96.png
│   │   │   │   │   ├── 97.png
│   │   │   │   │   ├── 98.png
│   │   │   │   │   ├── 99.png
│   │   │   │   │   ├── 9.png
│   │   │   │   │   ├── a01.png
│   │   │   │   │   ├── a02.png
│   │   │   │   │   ├── a03.png
│   │   │   │   │   ├── a04.png
│   │   │   │   │   ├── a05.png
│   │   │   │   │   ├── a07.png
│   │   │   │   │   ├── b01.png
│   │   │   │   │   ├── b02.png
│   │   │   │   │   ├── b03.png
│   │   │   │   │   ├── b04.png
│   │   │   │   │   ├── b05.png
│   │   │   │   │   ├── b06.png
│   │   │   │   │   ├── b07.png
│   │   │   │   │   ├── c01.png
│   │   │   │   │   ├── c02.png
│   │   │   │   │   ├── c03.png
│   │   │   │   │   ├── c04.png
│   │   │   │   │   ├── c05.png
│   │   │   │   │   ├── c06.png
│   │   │   │   │   ├── c07.png
│   │   │   │   │   ├── d01.png
│   │   │   │   │   ├── d02.png
│   │   │   │   │   ├── d03.png
│   │   │   │   │   ├── d04.png
│   │   │   │   │   ├── d05.png
│   │   │   │   │   ├── d06.png
│   │   │   │   │   ├── d07.png
│   │   │   │   │   ├── e01.png
│   │   │   │   │   ├── e02.png
│   │   │   │   │   ├── e03.png
│   │   │   │   │   ├── e04.png
│   │   │   │   │   ├── e05.png
│   │   │   │   │   ├── e06.png
│   │   │   │   │   ├── f01.png
│   │   │   │   │   ├── f02.png
│   │   │   │   │   ├── f03.png
│   │   │   │   │   ├── f04.png
│   │   │   │   │   ├── f05.png
│   │   │   │   │   ├── f06.png
│   │   │   │   │   ├── g01.png
│   │   │   │   │   ├── g02.png
│   │   │   │   │   ├── g03.png
│   │   │   │   │   ├── g04.png
│   │   │   │   │   ├── g05.png
│   │   │   │   │   ├── normal.PNG
│   │   │   │   │   └── Thumbs.db
│   │   │   │   ├── ico.ico
│   │   │   │   ├── LevelPrompt.png
│   │   │   │   ├── Logining.gif
│   │   │   │   ├── Logining_Vip.gif
│   │   │   │   ├── login_logo.png
│   │   │   │   ├── main.jpg
│   │   │   │   ├── MidToolbarExtUp_Font
│   │   │   │   │   ├── aio_quickbar_sysfont_tab_button.png
│   │   │   │   │   ├── Bold.png
│   │   │   │   │   ├── color.png
│   │   │   │   │   ├── Italic.png
│   │   │   │   │   └── underline.png
│   │   │   │   ├── mini_defaultbanner.png
│   │   │   │   ├── mini_firstrunbanner.png
│   │   │   │   ├── QQshow
│   │   │   │   │   ├── qqshow2_boy.gif
│   │   │   │   │   └── qqshow2_girl.gif
│   │   │   │   ├── searching.gif
│   │   │   │   ├── sep-line.jpg
│   │   │   │   ├── status
│   │   │   │   │   ├── away.png
│   │   │   │   │   ├── busy.png
│   │   │   │   │   ├── imoffline.png
│   │   │   │   │   ├── imonline.png
│   │   │   │   │   ├── invisible.png
│   │   │   │   │   ├── mute.png
│   │   │   │   │   ├── Qme.png
│   │   │   │   │   ├── QQ
│   │   │   │   │   │   ├── GG
│   │   │   │   │   │   │   ├── away.ico
│   │   │   │   │   │   │   ├── busy.ico
│   │   │   │   │   │   │   ├── imonline.ico
│   │   │   │   │   │   │   ├── invisible.ico
│   │   │   │   │   │   │   ├── mute.ico
│   │   │   │   │   │   │   ├── offline.ico
│   │   │   │   │   │   │   └── Qme.ico
│   │   │   │   │   │   ├── login
│   │   │   │   │   │   │   ├── Loading_1.ico
│   │   │   │   │   │   │   ├── Loading_2.ico
│   │   │   │   │   │   │   ├── Loading_3.ico
│   │   │   │   │   │   │   ├── Loading_4.ico
│   │   │   │   │   │   │   ├── Loading_5.ico
│   │   │   │   │   │   │   └── Loading_6.ico
│   │   │   │   │   │   └── MM
│   │   │   │   │   │   ├── away.ico
│   │   │   │   │   │   ├── busy.ico
│   │   │   │   │   │   ├── imonline.ico
│   │   │   │   │   │   ├── invisible.ico
│   │   │   │   │   │   ├── mute.ico
│   │   │   │   │   │   ├── offline.ico
│   │   │   │   │   │   └── Qme.ico
│   │   │   │   │   └── speaker.ico
│   │   │   │   ├── std_defaultbanner.png
│   │   │   │   ├── tools
│   │   │   │   │   ├── appbox_mgr_btn.png
│   │   │   │   │   ├── colour.png
│   │   │   │   │   ├── ContactTipsVASFlagExt_Mail.png
│   │   │   │   │   ├── find.png
│   │   │   │   │   ├── friendicon.png
│   │   │   │   │   ├── menu_btn_highlight.png
│   │   │   │   │   ├── Messagebox18.PNG
│   │   │   │   │   ├── message.png
│   │   │   │   │   ├── purse16.ico
│   │   │   │   │   ├── qzoneicon.png
│   │   │   │   │   ├── search_normal.bmp
│   │   │   │   │   ├── TitleIcon.png
│   │   │   │   │   ├── Tools.png
│   │   │   │   │   └── wblogicon.png
│   │   │   │   └── TopTool
│   │   │   │   ├── aio_toobar_addhuman.png
│   │   │   │   ├── aio_toobar_add.png
│   │   │   │   ├── aio_toobar_app.png
│   │   │   │   ├── aio_toobar_block.png
│   │   │   │   ├── aio_toobar_game.png
│   │   │   │   ├── aio_toobar_Report.png
│   │   │   │   └── video.png
│   │   │   ├── Interop.DynamicGifLib.dll
│   │   │   ├── Interop.ImageOleLib.dll
│   │   │   ├── Newtonsoft.Json.dll
│   │   │   ├── QQControls.dll
│   │   │   ├── QQControls.pdb
│   │   │   └── QQIM.vshost.exe.manifest
│   │   └── Release
│   │   ├── ClientView.exe.config
│   │   ├── ClientView.vshost.exe
│   │   ├── ClientView.vshost.exe.config
│   │   └── ClientView.vshost.exe.manifest
│   ├── Class
│   │   ├── AppContext.cs
│   │   ├── ClientManager.cs
│   │   ├── MsgContext.cs
│   │   └── Program.cs
│   ├── ClientView.csproj
│   ├── ClientView.csproj.user
│   ├── Entity
│   │   ├── BloodType.cs
│   │   └── Star.cs
│   ├── Forms
│   │   ├── FrmChat.cs
│   │   ├── FrmChat.Designer.cs
│   │   ├── FrmChat.resx
│   │   ├── FrmLogin.cs
│   │   ├── FrmLogin.Designer.cs
│   │   ├── FrmLogin.resx
│   │   ├── FrmLoginValidate.cs
│   │   ├── FrmLoginValidate.Designer.cs
│   │   ├── FrmLoginValidate.resx
│   │   ├── FrmMain.cs
│   │   ├── FrmMain.Designer.cs
│   │   ├── FrmMain.resx
│   │   ├── FrmRegister.cs
│   │   ├── FrmRegister.Designer.cs
│   │   ├── FrmRegister.resx
│   │   ├── FrmSearch.cs
│   │   ├── FrmSearch.Designer.cs
│   │   ├── FrmSearchFriend.cs
│   │   ├── FrmSearchFriend.Designer.cs
│   │   ├── FrmSearchFriend.resx
│   │   ├── FrmSearch.resx
│   │   ├── FrmSysMessage.cs
│   │   ├── FrmSysMessage.Designer.cs
│   │   └── FrmSysMessage.resx
│   ├── Helper
│   │   └── XmlHelper.cs
│   ├── ico.ico
│   ├── obj
│   │   └── x86
│   │   ├── Debug
│   │   │   ├── ClientView.csproj.FileListAbsolute.txt
│   │   │   ├── ClientView.exe
│   │   │   ├── ClientView.FrmChat.resources
│   │   │   ├── ClientView.FrmLogin.resources
│   │   │   ├── ClientView.FrmLoginValidate.resources
│   │   │   ├── ClientView.FrmMain.resources
│   │   │   ├── ClientView.FrmRegister.resources
│   │   │   ├── ClientView.FrmSearchFriend.resources
│   │   │   ├── ClientView.FrmSearch.resources
│   │   │   ├── ClientView.FrmSysMessage.resources
│   │   │   ├── ClientView.pdb
│   │   │   ├── ClientView.StatusImages.resources
│   │   │   ├── ClientView.UserFace.resources
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── GenerateResource.read.1.tlog
│   │   │   ├── GenerateResource.write.1.tlog
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │   ├── Other.StatusImages.Designer.cs.dll
│   │   │   ├── Other.UserFace.Designer.cs.dll
│   │   │   ├── Properties.Resources.Designer.cs.dll
│   │   │   ├── StatusImages.Designer.cs.dll
│   │   │   └── UserFace.Designer.cs.dll
│   │   └── Release
│   │   ├── build.force
│   │   ├── ClientView.csproj.FileListAbsolute.txt
│   │   ├── ClientView.FrmChat.resources
│   │   ├── ClientView.FrmLogin.resources
│   │   ├── ClientView.FrmLoginValidate.resources
│   │   ├── ClientView.FrmRegister.resources
│   │   ├── ClientView.FrmSearchFriend.resources
│   │   ├── ClientView.FrmSearch.resources
│   │   ├── ClientView.FrmSysMessage.resources
│   │   ├── ClientView.StatusImages.resources
│   │   ├── ClientView.UserFace.resources
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── GenerateResource.read.1.tlog
│   │   ├── GenerateResource.write.1.tlog
│   │   ├── ResolveAssemblyReference.cache
│   │   └── TempPE
│   │   ├── StatusImages.Designer.cs.dll
│   │   └── UserFace.Designer.cs.dll
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── StatusImages.Designer.cs
│   ├── StatusImages.resx
│   ├── TimerEx.cs
│   ├── UserFace.Designer.cs
│   ├── UserFace.resx
│   └── Xml
│   ├── BloodTypeInfo.xml
│   └── StarInfo.xml
├── QQIM.sln
├── ServerBLL
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── Entity.dll
│   │   │   ├── Entity.pdb
│   │   │   ├── ServerBLL.dll
│   │   │   ├── ServerBLL.pdb
│   │   │   ├── ServerDAL.dll
│   │   │   └── ServerDAL.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── Entity.dll
│   │   ├── Entity.pdb
│   │   ├── ServerBLL.dll
│   │   ├── ServerBLL.pdb
│   │   ├── ServerDAL.dll
│   │   └── ServerDAL.pdb
│   ├── FriendsManager.cs
│   ├── MessagesManager.cs
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── ServerBLL.csproj.FileListAbsolute.txt
│   │   │   ├── ServerBLL.dll
│   │   │   └── ServerBLL.pdb
│   │   └── Release
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── ServerBLL.csproj.FileListAbsolute.txt
│   │   ├── ServerBLL.dll
│   │   └── ServerBLL.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── ServerBLL.csproj
│   └── UsersManager.cs
├── ServerDAL
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Common.dll
│   │   │   ├── Common.pdb
│   │   │   ├── Entity.dll
│   │   │   ├── Entity.pdb
│   │   │   ├── ServerDAL.dll
│   │   │   └── ServerDAL.pdb
│   │   └── Release
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── Entity.dll
│   │   ├── Entity.pdb
│   │   ├── ServerDAL.dll
│   │   └── ServerDAL.pdb
│   ├── FriendsServer.cs
│   ├── MessagesServer.cs
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── ServerDAL.csproj.FileListAbsolute.txt
│   │   │   ├── ServerDAL.dll
│   │   │   └── ServerDAL.pdb
│   │   └── Release
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── ServerDAL.csproj.FileListAbsolute.txt
│   │   ├── ServerDAL.dll
│   │   └── ServerDAL.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── ServerDAL.csproj
│   ├── SqlHelper.cs
│   └── UsersServer.cs
└── ServerView
├── App.config
├── bin
│   ├── Debug
│   │   ├── Common.dll
│   │   ├── Common.pdb
│   │   ├── Entity.dll
│   │   ├── Entity.pdb
│   │   ├── Newtonsoft.Json.dll
│   │   ├── ServerBLL.dll
│   │   ├── ServerBLL.pdb
│   │   ├── ServerDAL.dll
│   │   ├── ServerDAL.pdb
│   │   ├── ServerView.exe
│   │   ├── ServerView.exe.config
│   │   ├── ServerView.pdb
│   │   ├── ServerView.vshost.exe
│   │   ├── ServerView.vshost.exe.config
│   │   └── ServerView.vshost.exe.manifest
│   └── Release
│   ├── Common.dll
│   ├── Common.pdb
│   ├── Entity.dll
│   ├── Entity.pdb
│   ├── Newtonsoft.Json.dll
│   ├── ServerBLL.dll
│   ├── ServerBLL.pdb
│   ├── ServerDAL.dll
│   ├── ServerDAL.pdb
│   ├── ServerView.exe
│   ├── ServerView.exe.config
│   ├── ServerView.pdb
│   ├── ServerView.vshost.exe
│   ├── ServerView.vshost.exe.config
│   └── ServerView.vshost.exe.manifest
├── FrmMain.cs
├── FrmMain.Designer.cs
├── FrmMain.resx
├── obj
│   └── x86
│   ├── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── GenerateResource.read.1.tlog
│   │   ├── GenerateResource.write.1.tlog
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── ServerView.csproj.FileListAbsolute.txt
│   │   ├── ServerView.exe
│   │   ├── ServerView.FrmMain.resources
│   │   ├── ServerView.pdb
│   │   ├── ServerView.Properties.Resources.resources
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   └── Release
│   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   ├── GenerateResource.read.1.tlog
│   ├── GenerateResource.write.1.tlog
│   ├── ResolveAssemblyReference.cache
│   ├── ServerView.csproj.FileListAbsolute.txt
│   ├── ServerView.exe
│   ├── ServerView.FrmMain.resources
│   ├── ServerView.pdb
│   ├── ServerView.Properties.Resources.resources
│   └── TempPE
│   └── Properties.Resources.Designer.cs.dll
├── Program.cs
├── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── ServerManager.cs
└── ServerView.csproj

94 directories, 740 files

标签:

实例下载地址

winform C# 高仿QQ

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警