tmyt / VDMHelper

Library for Windows10 VirtualDesktopManager over cross-process.
MIT License
34 stars 7 forks source link

Helper library for VirtualDesktopManager

how to use

Step1. Copy these files to same directory to your main exe file.

Step2. Add reference VDMHelperCLR.Common.dll to your project.

Step3. Run this code to start hook.

this.helper = VdmHelperFactory.CreateInstance(type);
this.helper.Init();

Step4. Stop hook when app closing.

this.helper.Dispose();

note