Hello,<br><br>I am a new user to vtk, and i am facing problem in handling arrow keys.<br><br>I am using vtkRenderWindow whose parent is set as a panel, this panel  is into a &quot;user control&quot; named ViewerControl which is in a form, now for the vtkRenderWindowInteractor i am listening to the &quot;key press events&quot;  I am getting the event for each key press except the &quot;Arrow keys and the TAB key&quot;. The keys are not at all captured by the vtkRenderWindow (because when i press these arrow keys the event goes to the main form and its used to navigation on different controls there), further digging i came across for a user control to process these keys one should override a virtual method called IsInputKey(Keys keyData). which i have done as follows.<br>
<br>      bool ViewerControl::IsInputKey(Keys keyData)<br>      {<br>        switch (keyData)<br>        {<br>        case Keys::Left:<br>        case Keys::Right:<br>        case Keys::Up:<br>        case Keys::Down:<br>
        case Keys::Tab:<br>          return true;<br>        }<br>        return __super::IsInputKey(keyData);<br>      }<br><br>but this is not a solution am looking for. When my focus is on the ViewerControl then the arrow keys are processed but then all other input keys are also captured by it and vtkRenderWindow doesn&#39;t get any key, to make vtkRenderWindow to capture keys i need to click on it.<br>
<br>I may be proceeding fully towards wrong direction and i need help on this. Is there is any way to make vtkRenderwindow to make listen these arrow keys.<br><br>Thanks In Advance,<br>Vakul<br>