├── .gitignore ├── LICENSE ├── MasterControl ├── .qmake.stash ├── MasterControl.pro ├── UAC.manifest ├── about.cpp ├── about.h ├── about.ui ├── checkonline.cpp ├── checkonline.h ├── examinfo.h ├── flowlayout.cpp ├── flowlayout.h ├── form123.cpp ├── form123.h ├── form123.ui ├── iconhelper.cpp ├── iconhelper.h ├── justenum.h ├── logo.ico ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── monitorscreen.cpp ├── monitorscreen.h ├── monitorscreen.ui ├── pyhttpserver │ ├── pyhttpserver.exe │ └── pyhttpserver.py ├── rc.rc ├── receiver.cpp ├── receiver.h ├── resource.qrc ├── resource │ ├── fontawesome-webfont.ttf │ ├── img │ │ ├── Download-Computer-512.png │ │ ├── PPTMode.png │ │ ├── addChoice.png │ │ ├── addCompletion.png │ │ ├── arrow-up-512.png │ │ ├── boy.png │ │ ├── checkIn.png │ │ ├── clapboard-512.png │ │ ├── compose-512.png │ │ ├── computer-512.png │ │ ├── exam.png │ │ ├── girl.png │ │ ├── magnifyingglass-512.png │ │ ├── openFile.png │ │ ├── pptx-128.png │ │ ├── profle-512.png │ │ ├── screenOn.png │ │ ├── selectAll.png │ │ ├── sender.png │ │ ├── stop.png │ │ ├── transferFile.png │ │ └── watchingYou.png │ └── psblack.css ├── screenbc.ui ├── screensharing.cpp ├── screensharing.h ├── sender.cpp ├── sender.h ├── showscreen.cpp ├── showscreen.h ├── showscreen.ui ├── singleapplication.cpp ├── singleapplication.h ├── stucheckin.cpp ├── stucheckin.h ├── stucheckin.ui ├── stuinfo.h ├── transferfile.cpp ├── transferfile.h └── transferfile.ui ├── README.md ├── SlaveClient ├── Prohibitor.cpp ├── Prohibitor.h ├── QuaZIP │ └── include │ │ ├── JlCompress.h │ │ ├── crypt.h │ │ ├── ioapi.h │ │ ├── quaadler32.h │ │ ├── quachecksum32.h │ │ ├── quacrc32.h │ │ ├── quagzipfile.h │ │ ├── quaziodevice.h │ │ ├── quazip.h │ │ ├── quazip_global.h │ │ ├── quazipdir.h │ │ ├── quazipfile.h │ │ ├── quazipfileinfo.h │ │ ├── quazipnewinfo.h │ │ ├── unzip.h │ │ └── zip.h ├── SlaveClient.pro ├── UAC.manifest ├── checkin.cpp ├── checkin.h ├── checkin.ui ├── drawcursor.cpp ├── drawcursor.h ├── examinfo.h ├── examtest.cpp ├── examtest.h ├── examtest.ui ├── justenum.h ├── logo.ico ├── logo.png ├── logo.rc ├── main.cpp ├── rc.rc ├── receiver.cpp ├── receiver.h ├── resource.qrc ├── resource │ ├── cursor │ │ ├── cursor-arrow.png │ │ ├── cursor-busy.png │ │ ├── cursor-closedhand.png │ │ ├── cursor-cross.png │ │ ├── cursor-forbidden.png │ │ ├── cursor-hand.png │ │ ├── cursor-hsplit.png │ │ ├── cursor-ibeam.png │ │ ├── cursor-openhand.png │ │ ├── cursor-sizeall.png │ │ ├── cursor-sizeb.png │ │ ├── cursor-sizef.png │ │ ├── cursor-sizeh.png │ │ ├── cursor-sizev.png │ │ ├── cursor-uparrow.png │ │ ├── cursor-vsplit.png │ │ ├── cursor-wait.png │ │ └── cursor-whatsthis.png │ ├── img │ │ ├── boy.png │ │ ├── mate.jpg │ │ ├── right.png │ │ └── wrong.png │ └── qss │ │ └── cm.css ├── screensharing.cpp ├── screensharing.h ├── sender.cpp ├── sender.h ├── sendinfo.h ├── showdownload.cpp ├── showdownload.h ├── showdownload.ui ├── showscreen.cpp ├── showscreen.h ├── showscreen.ui ├── singleapplication.cpp ├── singleapplication.h ├── stuinfo.h ├── widget.cpp ├── widget.h ├── widget.ui └── zlib128-dll │ ├── DLL_FAQ.txt │ ├── README.txt │ ├── USAGE.txt │ ├── include │ ├── zconf.h │ └── zlib.h │ ├── lib │ ├── zdll.lib │ └── zlib.def │ └── test │ ├── example_d.exe │ └── minigzip_d.exe └── screenshot ├── Master主界面.jpg ├── 多台机器演示.jpg ├── 屏幕批量监控.jpg ├── 屏幕演示.jpg ├── 托盘.jpg ├── 文件传输.jpg └── 文件传输速度.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/LICENSE -------------------------------------------------------------------------------- /MasterControl/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/.qmake.stash -------------------------------------------------------------------------------- /MasterControl/MasterControl.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/MasterControl.pro -------------------------------------------------------------------------------- /MasterControl/UAC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/UAC.manifest -------------------------------------------------------------------------------- /MasterControl/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/about.cpp -------------------------------------------------------------------------------- /MasterControl/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/about.h -------------------------------------------------------------------------------- /MasterControl/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/about.ui -------------------------------------------------------------------------------- /MasterControl/checkonline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/checkonline.cpp -------------------------------------------------------------------------------- /MasterControl/checkonline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/checkonline.h -------------------------------------------------------------------------------- /MasterControl/examinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/examinfo.h -------------------------------------------------------------------------------- /MasterControl/flowlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/flowlayout.cpp -------------------------------------------------------------------------------- /MasterControl/flowlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/flowlayout.h -------------------------------------------------------------------------------- /MasterControl/form123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/form123.cpp -------------------------------------------------------------------------------- /MasterControl/form123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/form123.h -------------------------------------------------------------------------------- /MasterControl/form123.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/form123.ui -------------------------------------------------------------------------------- /MasterControl/iconhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/iconhelper.cpp -------------------------------------------------------------------------------- /MasterControl/iconhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/iconhelper.h -------------------------------------------------------------------------------- /MasterControl/justenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/justenum.h -------------------------------------------------------------------------------- /MasterControl/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/logo.ico -------------------------------------------------------------------------------- /MasterControl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/main.cpp -------------------------------------------------------------------------------- /MasterControl/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/mainwindow.cpp -------------------------------------------------------------------------------- /MasterControl/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/mainwindow.h -------------------------------------------------------------------------------- /MasterControl/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/mainwindow.ui -------------------------------------------------------------------------------- /MasterControl/monitorscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/monitorscreen.cpp -------------------------------------------------------------------------------- /MasterControl/monitorscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/monitorscreen.h -------------------------------------------------------------------------------- /MasterControl/monitorscreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/monitorscreen.ui -------------------------------------------------------------------------------- /MasterControl/pyhttpserver/pyhttpserver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/pyhttpserver/pyhttpserver.exe -------------------------------------------------------------------------------- /MasterControl/pyhttpserver/pyhttpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/pyhttpserver/pyhttpserver.py -------------------------------------------------------------------------------- /MasterControl/rc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/rc.rc -------------------------------------------------------------------------------- /MasterControl/receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/receiver.cpp -------------------------------------------------------------------------------- /MasterControl/receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/receiver.h -------------------------------------------------------------------------------- /MasterControl/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource.qrc -------------------------------------------------------------------------------- /MasterControl/resource/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /MasterControl/resource/img/Download-Computer-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/Download-Computer-512.png -------------------------------------------------------------------------------- /MasterControl/resource/img/PPTMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/PPTMode.png -------------------------------------------------------------------------------- /MasterControl/resource/img/addChoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/addChoice.png -------------------------------------------------------------------------------- /MasterControl/resource/img/addCompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/addCompletion.png -------------------------------------------------------------------------------- /MasterControl/resource/img/arrow-up-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/arrow-up-512.png -------------------------------------------------------------------------------- /MasterControl/resource/img/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/boy.png -------------------------------------------------------------------------------- /MasterControl/resource/img/checkIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/checkIn.png -------------------------------------------------------------------------------- /MasterControl/resource/img/clapboard-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/clapboard-512.png -------------------------------------------------------------------------------- /MasterControl/resource/img/compose-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/compose-512.png -------------------------------------------------------------------------------- /MasterControl/resource/img/computer-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/computer-512.png -------------------------------------------------------------------------------- /MasterControl/resource/img/exam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/exam.png -------------------------------------------------------------------------------- /MasterControl/resource/img/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/girl.png -------------------------------------------------------------------------------- /MasterControl/resource/img/magnifyingglass-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/magnifyingglass-512.png -------------------------------------------------------------------------------- /MasterControl/resource/img/openFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/openFile.png -------------------------------------------------------------------------------- /MasterControl/resource/img/pptx-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/pptx-128.png -------------------------------------------------------------------------------- /MasterControl/resource/img/profle-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/profle-512.png -------------------------------------------------------------------------------- /MasterControl/resource/img/screenOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/screenOn.png -------------------------------------------------------------------------------- /MasterControl/resource/img/selectAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/selectAll.png -------------------------------------------------------------------------------- /MasterControl/resource/img/sender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/sender.png -------------------------------------------------------------------------------- /MasterControl/resource/img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/stop.png -------------------------------------------------------------------------------- /MasterControl/resource/img/transferFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/transferFile.png -------------------------------------------------------------------------------- /MasterControl/resource/img/watchingYou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/img/watchingYou.png -------------------------------------------------------------------------------- /MasterControl/resource/psblack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/resource/psblack.css -------------------------------------------------------------------------------- /MasterControl/screenbc.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/screenbc.ui -------------------------------------------------------------------------------- /MasterControl/screensharing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/screensharing.cpp -------------------------------------------------------------------------------- /MasterControl/screensharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/screensharing.h -------------------------------------------------------------------------------- /MasterControl/sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/sender.cpp -------------------------------------------------------------------------------- /MasterControl/sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/sender.h -------------------------------------------------------------------------------- /MasterControl/showscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/showscreen.cpp -------------------------------------------------------------------------------- /MasterControl/showscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/showscreen.h -------------------------------------------------------------------------------- /MasterControl/showscreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/showscreen.ui -------------------------------------------------------------------------------- /MasterControl/singleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/singleapplication.cpp -------------------------------------------------------------------------------- /MasterControl/singleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/singleapplication.h -------------------------------------------------------------------------------- /MasterControl/stucheckin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/stucheckin.cpp -------------------------------------------------------------------------------- /MasterControl/stucheckin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/stucheckin.h -------------------------------------------------------------------------------- /MasterControl/stucheckin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/stucheckin.ui -------------------------------------------------------------------------------- /MasterControl/stuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/stuinfo.h -------------------------------------------------------------------------------- /MasterControl/transferfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/transferfile.cpp -------------------------------------------------------------------------------- /MasterControl/transferfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/transferfile.h -------------------------------------------------------------------------------- /MasterControl/transferfile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/MasterControl/transferfile.ui -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/README.md -------------------------------------------------------------------------------- /SlaveClient/Prohibitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/Prohibitor.cpp -------------------------------------------------------------------------------- /SlaveClient/Prohibitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/Prohibitor.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/JlCompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/JlCompress.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/crypt.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/ioapi.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quaadler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quaadler32.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quachecksum32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quachecksum32.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quacrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quacrc32.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quagzipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quagzipfile.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quaziodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quaziodevice.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quazip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quazip.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quazip_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quazip_global.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quazipdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quazipdir.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quazipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quazipfile.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quazipfileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quazipfileinfo.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/quazipnewinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/quazipnewinfo.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/unzip.h -------------------------------------------------------------------------------- /SlaveClient/QuaZIP/include/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/QuaZIP/include/zip.h -------------------------------------------------------------------------------- /SlaveClient/SlaveClient.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/SlaveClient.pro -------------------------------------------------------------------------------- /SlaveClient/UAC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/UAC.manifest -------------------------------------------------------------------------------- /SlaveClient/checkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/checkin.cpp -------------------------------------------------------------------------------- /SlaveClient/checkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/checkin.h -------------------------------------------------------------------------------- /SlaveClient/checkin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/checkin.ui -------------------------------------------------------------------------------- /SlaveClient/drawcursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/drawcursor.cpp -------------------------------------------------------------------------------- /SlaveClient/drawcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/drawcursor.h -------------------------------------------------------------------------------- /SlaveClient/examinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/examinfo.h -------------------------------------------------------------------------------- /SlaveClient/examtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/examtest.cpp -------------------------------------------------------------------------------- /SlaveClient/examtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/examtest.h -------------------------------------------------------------------------------- /SlaveClient/examtest.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/examtest.ui -------------------------------------------------------------------------------- /SlaveClient/justenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/justenum.h -------------------------------------------------------------------------------- /SlaveClient/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/logo.ico -------------------------------------------------------------------------------- /SlaveClient/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/logo.png -------------------------------------------------------------------------------- /SlaveClient/logo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/logo.rc -------------------------------------------------------------------------------- /SlaveClient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/main.cpp -------------------------------------------------------------------------------- /SlaveClient/rc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/rc.rc -------------------------------------------------------------------------------- /SlaveClient/receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/receiver.cpp -------------------------------------------------------------------------------- /SlaveClient/receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/receiver.h -------------------------------------------------------------------------------- /SlaveClient/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource.qrc -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-arrow.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-busy.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-closedhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-closedhand.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-cross.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-forbidden.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-hand.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-hsplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-hsplit.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-ibeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-ibeam.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-openhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-openhand.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-sizeall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-sizeall.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-sizeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-sizeb.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-sizef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-sizef.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-sizeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-sizeh.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-sizev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-sizev.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-uparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-uparrow.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-vsplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-vsplit.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-wait.png -------------------------------------------------------------------------------- /SlaveClient/resource/cursor/cursor-whatsthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/cursor/cursor-whatsthis.png -------------------------------------------------------------------------------- /SlaveClient/resource/img/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/img/boy.png -------------------------------------------------------------------------------- /SlaveClient/resource/img/mate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/img/mate.jpg -------------------------------------------------------------------------------- /SlaveClient/resource/img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/img/right.png -------------------------------------------------------------------------------- /SlaveClient/resource/img/wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/img/wrong.png -------------------------------------------------------------------------------- /SlaveClient/resource/qss/cm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/resource/qss/cm.css -------------------------------------------------------------------------------- /SlaveClient/screensharing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/screensharing.cpp -------------------------------------------------------------------------------- /SlaveClient/screensharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/screensharing.h -------------------------------------------------------------------------------- /SlaveClient/sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/sender.cpp -------------------------------------------------------------------------------- /SlaveClient/sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/sender.h -------------------------------------------------------------------------------- /SlaveClient/sendinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/sendinfo.h -------------------------------------------------------------------------------- /SlaveClient/showdownload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/showdownload.cpp -------------------------------------------------------------------------------- /SlaveClient/showdownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/showdownload.h -------------------------------------------------------------------------------- /SlaveClient/showdownload.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/showdownload.ui -------------------------------------------------------------------------------- /SlaveClient/showscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/showscreen.cpp -------------------------------------------------------------------------------- /SlaveClient/showscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/showscreen.h -------------------------------------------------------------------------------- /SlaveClient/showscreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/showscreen.ui -------------------------------------------------------------------------------- /SlaveClient/singleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/singleapplication.cpp -------------------------------------------------------------------------------- /SlaveClient/singleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/singleapplication.h -------------------------------------------------------------------------------- /SlaveClient/stuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/stuinfo.h -------------------------------------------------------------------------------- /SlaveClient/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/widget.cpp -------------------------------------------------------------------------------- /SlaveClient/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/widget.h -------------------------------------------------------------------------------- /SlaveClient/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/widget.ui -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/DLL_FAQ.txt -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/README.txt -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/USAGE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/USAGE.txt -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/include/zconf.h -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/include/zlib.h -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/lib/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/lib/zdll.lib -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/lib/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/lib/zlib.def -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/test/example_d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/test/example_d.exe -------------------------------------------------------------------------------- /SlaveClient/zlib128-dll/test/minigzip_d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/SlaveClient/zlib128-dll/test/minigzip_d.exe -------------------------------------------------------------------------------- /screenshot/Master主界面.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/screenshot/Master主界面.jpg -------------------------------------------------------------------------------- /screenshot/多台机器演示.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/screenshot/多台机器演示.jpg -------------------------------------------------------------------------------- /screenshot/屏幕批量监控.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/screenshot/屏幕批量监控.jpg -------------------------------------------------------------------------------- /screenshot/屏幕演示.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/screenshot/屏幕演示.jpg -------------------------------------------------------------------------------- /screenshot/托盘.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/screenshot/托盘.jpg -------------------------------------------------------------------------------- /screenshot/文件传输.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/screenshot/文件传输.jpg -------------------------------------------------------------------------------- /screenshot/文件传输速度.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrankZ/ScreenSharing-FileTransfer-in-LAN/HEAD/screenshot/文件传输速度.jpg --------------------------------------------------------------------------------