rhinocommon
rhinocommon copied to clipboard
Rhino.UI.KeyboardCallback
It will be great! I prefer Rhino app takes care about that instead of Windows API. ;)
Moe, could you elaborate on what it is that you want? Maybe some sample pseudocode of functions.
Moe, I found this thread when looking for something to detect if control key is pressed after a GetObject operation. So in case it helps your problem this is what I ended up using:
using System.Windows.Forms;
if ((Control.ModifierKeys & Keys.Control) == Keys.Control)
{
//do stuff
}