An alternative snipping tool solution was provided in this posting: .NET Equivalent of Snipping Tool
Now it\'s necessary to make it work for selected screens (on mul
You need to set the StartPosition of the form to Manual
before setting the Location of the SnippingTool, otherwise it gets placed on the primary screen no matter what. Do this either in the constructor or in your using statement and it should fix your issue.
StartPosition = FormStartPosition.Manual;