实例介绍
版权归L3Studio软件开发小组所有,我是在他们基础上做了补充和修改,增加键盘操作,让我遗憾的是屏幕清晰度不能保证,希望广大爱好者提出宝贵意见。
【实例截图】
【核心代码】
icanyouV2
└── icanyou
├── Backup
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── ICanSeeYou.csproj
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Client
│ ├── BaseControler.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Client.dll
│ │ │ ├── Client.pdb
│ │ │ ├── ICanSeeYou.dll
│ │ │ └── ICanSeeYou.pdb
│ │ └── Release
│ │ ├── Client.dll
│ │ ├── Client.pdb
│ │ ├── ICanSeeYou.dll
│ │ └── ICanSeeYou.pdb
│ ├── Client.csproj
│ ├── FileControler.cs
│ ├── obj
│ │ ├── Client.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── Client.csproj.FileListAbsolute.txt
│ │ │ ├── Client.dll
│ │ │ ├── Client.pdb
│ │ │ └── ResolveAssemblyReference.cache
│ │ └── Release
│ │ ├── Client.dll
│ │ ├── Client.pdb
│ │ └── ResolveAssemblyReference.cache
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ScreenControler.cs
├── Clients
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Client.dll
│ │ │ ├── Client.pdb
│ │ │ ├── Clients.dll
│ │ │ ├── Clients.pdb
│ │ │ ├── ICanSeeYou.dll
│ │ │ └── ICanSeeYou.pdb
│ │ └── Release
│ │ ├── Client.dll
│ │ ├── Client.pdb
│ │ ├── Clients.dll
│ │ ├── Clients.pdb
│ │ ├── ICanSeeYou.dll
│ │ └── ICanSeeYou.pdb
│ ├── Clients.csproj
│ ├── Controlers.cs
│ ├── obj
│ │ ├── Clients.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── Clients.csproj.FileListAbsolute.txt
│ │ │ ├── Clients.dll
│ │ │ ├── Clients.pdb
│ │ │ └── ResolveAssemblyReference.cache
│ │ └── Release
│ │ ├── Clients.dll
│ │ ├── Clients.pdb
│ │ └── ResolveAssemblyReference.cache
│ └── Properties
│ └── AssemblyInfo.cs
├── ICanSeeYou
│ ├── bin
│ │ └── Debug
│ │ ├── ICanSeeYou.exe
│ │ ├── ICanSeeYou.pdb
│ │ ├── ICanSeeYou.vshost.exe
│ │ └── ICanSeeYou.vshost.exe.manifest
│ ├── Common
│ │ ├── API
│ │ │ └── Api.cs
│ │ ├── Bases
│ │ │ └── BaseCommunication.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── ICanSeeYou.dll
│ │ │ │ └── ICanSeeYou.pdb
│ │ │ └── Release
│ │ │ ├── ICanSeeYou.dll
│ │ │ └── ICanSeeYou.pdb
│ │ ├── Codes
│ │ │ ├── Code.cs
│ │ │ ├── CodeHead.cs
│ │ │ ├── Explorer
│ │ │ │ ├── BaseStruct.cs
│ │ │ │ ├── DirectoryStruct.cs
│ │ │ │ ├── DisksCode.cs
│ │ │ │ ├── DiskStruct.cs
│ │ │ │ ├── ExplorerCode.cs
│ │ │ │ └── FileStruct.cs
│ │ │ ├── IO
│ │ │ │ ├── FileCode.cs
│ │ │ │ └── SendScreenCode.cs
│ │ │ ├── Mouse_KeyBoard
│ │ │ │ ├── KeyBoardEvent.cs
│ │ │ │ ├── KeyBoardHookCode.cs
│ │ │ │ └── MouseEvent.cs
│ │ │ ├── Net
│ │ │ │ ├── HostCode.cs
│ │ │ │ └── PortCode.cs
│ │ │ └── Simple
│ │ │ ├── DoubleCode.cs
│ │ │ └── ThreeCode.cs
│ │ ├── Common.csproj
│ │ ├── Configure
│ │ │ ├── Option.cs
│ │ │ ├── OptionFile.cs
│ │ │ ├── OptionManager.cs
│ │ │ ├── PassWord.cs
│ │ │ └── PassWordFile.cs
│ │ ├── Constant.cs
│ │ ├── Hooks
│ │ │ ├── KeyBoardHook.cs
│ │ │ └── MouseHook.cs
│ │ ├── IO.cs
│ │ ├── Network.cs
│ │ ├── obj
│ │ │ ├── Common.csproj.FileList.txt
│ │ │ ├── Debug
│ │ │ │ ├── ICanSeeYou.dll
│ │ │ │ └── ICanSeeYou.pdb
│ │ │ └── Release
│ │ │ ├── ICanSeeYou.dll
│ │ │ └── ICanSeeYou.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Servers.cs
│ │ └── Windows
│ │ ├── ScreenCapture.cs
│ │ └── WindowsManager.cs
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── ICanSeeYou.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── ICanSeeYou.csproj.FileListAbsolute.txt
│ │ ├── ICanSeeYou.csproj.GenerateResource.Cache
│ │ ├── ICanSeeYou.exe
│ │ ├── ICanSeeYou.pdb
│ │ ├── ICanSeeYou.Properties.Resources.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── ICanSeeYou.sln
├── ICanSeeYou.suo
├── ICanSeeYou概括说明.doc
├── INCUclient
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Client.dll
│ │ │ ├── Client.pdb
│ │ │ ├── Clients.dll
│ │ │ ├── Clients.pdb
│ │ │ ├── ICanSeeYou.dll
│ │ │ ├── ICanSeeYou.pdb
│ │ │ ├── INCU.CHM
│ │ │ ├── INCUclient.exe
│ │ │ ├── INCUclient.pdb
│ │ │ ├── INCUclient.vshost.exe
│ │ │ ├── INCUclient.vshost.exe.manifest
│ │ │ ├── INCUopt.lll
│ │ │ └── IPAddressControlLib.dll
│ │ ├── Debugremote
│ │ │ ├── Client.dll
│ │ │ ├── Client.pdb
│ │ │ ├── Clients.dll
│ │ │ ├── Clients.pdb
│ │ │ ├── ICanSeeYou.dll
│ │ │ ├── ICanSeeYou.pdb
│ │ │ ├── INCU.CHM
│ │ │ ├── INCUclient.exe
│ │ │ ├── INCUclient.pdb
│ │ │ ├── INCUclient.vshost.exe
│ │ │ ├── INCUclient.vshost.exe.manifest
│ │ │ ├── INCUopt.lll
│ │ │ └── IPAddressControlLib.dll
│ │ └── Release
│ │ ├── INCUclient.vshost.exe
│ │ ├── INCUclient.vshost.exe.manifest
│ │ └── INCUopt.lll
│ ├── frm_AboutINCU.cs
│ ├── frm_AboutINCU.Designer.cs
│ ├── frm_AboutINCU.resx
│ ├── frm_Client.cs
│ ├── frm_Client.Designer.cs
│ ├── frm_Client.resx
│ ├── frm_ConnectAll.cs
│ ├── frm_ConnectAll.Designer.cs
│ ├── frm_ConnectAll.resx
│ ├── frm_Connection.cs
│ ├── frm_Connection.Designer.cs
│ ├── frm_Connection.resx
│ ├── frm_Login.cs
│ ├── frm_Login.Designer.cs
│ ├── frm_Login.resx
│ ├── frm_Option.cs
│ ├── frm_Option.Designer.cs
│ ├── frm_Option.resx
│ ├── INCU.CHM
│ ├── INCUclient.csproj
│ ├── INCUclient.csproj.user
│ ├── INCU_Client.ico
│ ├── IPAddressControlLib.dll
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ICANSEEYOU.frm_server.resources
│ │ │ ├── ICANSEEYOU.Properties.Resources.resources
│ │ │ ├── ICANSEEYOU_server.csproj.GenerateResource.Cache
│ │ │ ├── ICSY_Server.exe
│ │ │ ├── ICSY_Server.pdb
│ │ │ ├── INCUclient.csproj.FileListAbsolute.txt
│ │ │ ├── INCUclient.csproj.GenerateResource.Cache
│ │ │ ├── INCUclient.exe
│ │ │ ├── INCUclient.frm_AboutINCU.resources
│ │ │ ├── INCUclient.frm_Client.resources
│ │ │ ├── INCUclient.frm_ConnectAll.resources
│ │ │ ├── INCUclient.frm_Connection.resources
│ │ │ ├── INCUclient.frm_Login.resources
│ │ │ ├── INCUclient.frm_Option.resources
│ │ │ ├── INCUclient.pdb
│ │ │ ├── INCUclient.Properties.Resources.resources
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── ICANSEEYOU_server.csproj.FileList.txt
│ │ ├── INCUclient.csproj.FileList.txt
│ │ └── Release
│ │ ├── INCUclient.csproj.FileListAbsolute.txt
│ │ ├── INCUclient.csproj.GenerateResource.Cache
│ │ ├── INCUclient.exe
│ │ ├── INCUclient.frm_AboutINCU.resources
│ │ ├── INCUclient.frm_client.resources
│ │ ├── INCUclient.frm_connectAll.resources
│ │ ├── INCUclient.frm_connection.resources
│ │ ├── INCUclient.frm_Login.resources
│ │ ├── INCUclient.frm_Option.resources
│ │ ├── INCUclient.pdb
│ │ ├── INCUclient.Properties.Resources.resources
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── About.gif
│ │ ├── add.gif
│ │ ├── AllMachine.gif
│ │ ├── backgroud2.jpg
│ │ ├── CloseLink.gif
│ │ ├── ControlScreen.GIF
│ │ ├── download.gif
│ │ ├── Exit.gif
│ │ ├── Fire.png
│ │ ├── FixMachine.gif
│ │ ├── Help.gif
│ │ ├── info.gif
│ │ ├── logo.JPG
│ │ ├── Open.gif
│ │ ├── Pause.gif
│ │ ├── play.gif
│ │ ├── Refrush.gif
│ │ ├── relink.gif
│ │ ├── Remove.gif
│ │ ├── Shutdown.gif
│ │ ├── stop.gif
│ │ ├── Thumbs.db
│ │ ├── update2.ICO
│ │ └── upload.gif
│ └── Thumbs.db
├── INCUserver
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ICanSeeYou.dll
│ │ │ ├── ICanSeeYou.pdb
│ │ │ ├── INCUpwd.lll
│ │ │ ├── INCUserver.exe
│ │ │ ├── INCUserver.pdb
│ │ │ ├── INCUserver.vshost.exe
│ │ │ ├── INCUserver.vshost.exe.manifest
│ │ │ ├── Server.dll
│ │ │ ├── Server.pdb
│ │ │ ├── Servers.dll
│ │ │ ├── Servers.pdb
│ │ │ ├── ShowMessage.dll
│ │ │ ├── ShowMessage.pdb
│ │ │ ├── Update.exe
│ │ │ ├── Update.pdb
│ │ │ ├── Update.vshost.exe
│ │ │ └── Update.vshost.exe.manifest
│ │ ├── Debugrem
│ │ │ ├── ICanSeeYou.dll
│ │ │ ├── ICanSeeYou.pdb
│ │ │ ├── INCUpwd.lll
│ │ │ ├── INCUserver.exe
│ │ │ ├── INCUserver.pdb
│ │ │ ├── INCUserver.vshost.exe
│ │ │ ├── INCUserver.vshost.exe.manifest
│ │ │ ├── Server.dll
│ │ │ ├── Server.pdb
│ │ │ ├── Servers.dll
│ │ │ ├── Servers.pdb
│ │ │ ├── ShowMessage.dll
│ │ │ ├── ShowMessage.pdb
│ │ │ ├── Update.exe
│ │ │ ├── Update.pdb
│ │ │ ├── Update.vshost.exe
│ │ │ └── Update.vshost.exe.manifest
│ │ └── Release
│ │ ├── INCUserver.vshost.exe
│ │ └── INCUserver.vshost.exe.manifest
│ ├── frm_AboutINCU.cs
│ ├── frm_AboutINCU.Designer.cs
│ ├── frm_AboutINCU.resx
│ ├── frm_PassWord.cs
│ ├── frm_PassWord.Designer.cs
│ ├── frm_PassWord.resx
│ ├── frm_Server.cs
│ ├── frm_Server.Designer.cs
│ ├── frm_Server.resx
│ ├── INCUserver.csproj
│ ├── INCU_Server.ico
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ICANSEEYOU_client.csproj.GenerateResource.Cache
│ │ │ ├── ICANSEEYOU.frm_client.resources
│ │ │ ├── ICANSEEYOU.Properties.Resources.resources
│ │ │ ├── ICSY_Client.exe
│ │ │ ├── ICSY_Client.pdb
│ │ │ ├── INCUserver.csproj.FileListAbsolute.txt
│ │ │ ├── INCUserver.csproj.GenerateResource.Cache
│ │ │ ├── INCUserver.exe
│ │ │ ├── INCUserver.frm_AboutINCU.resources
│ │ │ ├── INCUserver.frm_PassWord.resources
│ │ │ ├── INCUserver.frm_Server.resources
│ │ │ ├── INCUserver.pdb
│ │ │ ├── INCUserver.Properties.Resources.resources
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── ICANSEEYOU_client.csproj.FileList.txt
│ │ ├── INCUserver.csproj.FileList.txt
│ │ └── Release
│ │ ├── INCUserver.csproj.FileListAbsolute.txt
│ │ ├── INCUserver.csproj.GenerateResource.Cache
│ │ ├── INCUserver.exe
│ │ ├── INCUserver.frm_AboutINCU.resources
│ │ ├── INCUserver.frm_Password.resources
│ │ ├── INCUserver.frm_server.resources
│ │ ├── INCUserver.pdb
│ │ ├── INCUserver.Properties.Resources.resources
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── Exit.gif
│ │ ├── Ice.png
│ │ └── info.gif
│ └── Thumbs.db
├── OptionFileCreator
│ ├── bin
│ │ └── Debug
│ │ ├── ICanSeeYou.dll
│ │ ├── ICanSeeYou.pdb
│ │ ├── OptionFileCreator.exe
│ │ ├── OptionFileCreator.pdb
│ │ ├── OptionFileCreator.vshost.exe
│ │ └── OptionFileCreator.vshost.exe.manifest
│ ├── Eyeball.ico
│ ├── frm_Main.cs
│ ├── frm_Main.Designer.cs
│ ├── frm_Main.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── OptionFileCreator.csproj.FileListAbsolute.txt
│ │ │ ├── OptionFileCreator.csproj.GenerateResource.Cache
│ │ │ ├── OptionFileCreator.exe
│ │ │ ├── OptionFileCreator.frm_Main.resources
│ │ │ ├── OptionFileCreator.pdb
│ │ │ └── OptionFileCreator.Properties.Resources.resources
│ │ ├── OptionFileCreator.csproj.FileList.txt
│ │ └── Release
│ │ ├── OptionFileCreator.csproj.GenerateResource.Cache
│ │ ├── OptionFileCreator.exe
│ │ ├── OptionFileCreator.frm_Main.resources
│ │ ├── OptionFileCreator.pdb
│ │ ├── OptionFileCreator.Properties.Resources.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── OptionFileCreator.csproj
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Thumbs.db
├── Server
│ ├── BaseServer.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ICanSeeYou.dll
│ │ │ ├── ICanSeeYou.pdb
│ │ │ ├── Server.dll
│ │ │ └── Server.pdb
│ │ └── Release
│ │ ├── ICanSeeYou.dll
│ │ ├── ICanSeeYou.pdb
│ │ ├── Server.dll
│ │ └── Server.pdb
│ ├── FileServer.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Server.csproj.FileListAbsolute.txt
│ │ │ ├── Server.dll
│ │ │ └── Server.pdb
│ │ ├── Release
│ │ │ ├── Server.dll
│ │ │ └── Server.pdb
│ │ └── Server.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ScreenServer.cs
│ ├── Server.csproj
│ └── ServerUpdater.cs
├── Servers
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ICanSeeYou.dll
│ │ │ ├── ICanSeeYou.pdb
│ │ │ ├── INCUcommon.dll
│ │ │ ├── Server.dll
│ │ │ ├── Server.pdb
│ │ │ ├── Servers.dll
│ │ │ ├── Servers.pdb
│ │ │ ├── ShowMessage.dll
│ │ │ └── ShowMessage.pdb
│ │ └── Release
│ │ ├── ICanSeeYou.dll
│ │ ├── ICanSeeYou.pdb
│ │ ├── Server.dll
│ │ ├── Server.pdb
│ │ ├── Servers.dll
│ │ ├── Servers.pdb
│ │ ├── ShowMessage.dll
│ │ └── ShowMessage.pdb
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── Servers.csproj.FileListAbsolute.txt
│ │ │ ├── Servers.dll
│ │ │ └── Servers.pdb
│ │ ├── Release
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── Servers.dll
│ │ │ └── Servers.pdb
│ │ └── Servers.csproj.FileList.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Servers.cs
│ └── Servers.csproj
├── ShowMessage
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ShowMessage.dll
│ │ │ └── ShowMessage.pdb
│ │ └── Release
│ │ ├── ShowMessage.dll
│ │ └── ShowMessage.pdb
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ShowMessage.csproj.FileListAbsolute.txt
│ │ │ ├── ShowMessage.csproj.GenerateResource.Cache
│ │ │ ├── ShowMessage.dll
│ │ │ ├── ShowMessage.pdb
│ │ │ ├── ShowMessage.Properties.Resources.resources
│ │ │ ├── ShowMessage.ShowMessageForm.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── Release
│ │ │ ├── ShowMessage.csproj.GenerateResource.Cache
│ │ │ ├── ShowMessage.dll
│ │ │ ├── ShowMessage.pdb
│ │ │ ├── ShowMessage.Properties.Resources.resources
│ │ │ ├── ShowMessage.ShowMessageForm.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── ShowMessage.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ShowMessage.csproj
│ ├── ShowMessageForm.cs
│ ├── ShowMessageForm.Designer.cs
│ └── ShowMessageForm.resx
├── Update
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── Update.csproj.FileListAbsolute.txt
│ │ │ ├── Update.exe
│ │ │ └── Update.pdb
│ │ ├── Release
│ │ │ ├── Update.exe
│ │ │ └── Update.pdb
│ │ └── Update.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── update2.ICO
│ └── Update.csproj
├── UpgradeLog2.XML
├── UpgradeLog.XML
└── _UpgradeReport_Files
├── UpgradeReport.css
├── UpgradeReport_Minus.gif
├── UpgradeReport_Plus.gif
└── UpgradeReport.xslt
109 directories, 441 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论