I need a screen shot whenever user paste any thing from computer using control+v or mouse paste function.
i need it in c# windows application which must work even outside app,.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rahul SinghPosted Sep 19, 2016, 1:20 PM
{
if (e.KeyCode.ToString() == "v")
{
screenCapture(true);
}
}