Screenshot without titlebar and overlay

Drandulet

New member
Joined
Mar 3, 2025
Messages
1
Programming Experience
Beginner
Hello, does anyone know of a good way to capture a screenshot of a dx11 game without the titlebar and without anything overlaying it (other windows)

In another c++ project I was using a dx11 hook internally, I can't seem to find a good way for c# that matches my requirements.

If anyone could recommend something I would be very grateful
 
C# allows you to access the same COM interfaces you used in your C++ project. It's just a matter of getting the interface definitions into C#. That might be by importing the type library, looking for in the DXSDK, looking for it in PInvoke.net, or writing it yourself.

Another alternative of to use C++/IJW to make a managed wrapper assembly. The C++ code calls the DirectX interface, and exposes a managed class. Reference this assembly from your C# code.
 
Back
Top Bottom