├── .gitignore ├── LICENSE ├── README.md ├── VTS_HDScreenshot.sln └── VTS_HDScreenshot ├── HDScreenshot.cs ├── Properties └── AssemblyInfo.cs └── VTS_HDScreenshot.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoye97/VTS_HDScreenshot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoye97/VTS_HDScreenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VTS_HDScreenshot 2 | 适用于VTS的高清截图,支持1080P 2K 4K 8K 16K 3 | -------------------------------------------------------------------------------- /VTS_HDScreenshot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoye97/VTS_HDScreenshot/HEAD/VTS_HDScreenshot.sln -------------------------------------------------------------------------------- /VTS_HDScreenshot/HDScreenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoye97/VTS_HDScreenshot/HEAD/VTS_HDScreenshot/HDScreenshot.cs -------------------------------------------------------------------------------- /VTS_HDScreenshot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoye97/VTS_HDScreenshot/HEAD/VTS_HDScreenshot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VTS_HDScreenshot/VTS_HDScreenshot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoye97/VTS_HDScreenshot/HEAD/VTS_HDScreenshot/VTS_HDScreenshot.csproj --------------------------------------------------------------------------------