I'm looking to essentially write code similar to what I can do with AutoHotKey, only in .NET and C#, because it's a much more robust environment. I didn't know if there was a wrapper library available for these sorts of hooks or not.

Does anyone know of a library that does this for .NET?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

This actually looks pretty promising, I haven't tested it yet, but it's at least a good starting point. Not too bad considering it's on CodeProject. lol.

link|improve this answer
Looks very cool :) +1 – Mikael Svenson Jan 26 '11 at 19:41
feedback

For sending keys you can use System.Windows.Forms.SendKeys.

For mouse and other input you have to wrap the SendMessage API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.