I'm using UltraGrid in my application, PS attached sample.
This grid's ultraGridColumn60 column's EditorComponent property is assigned to object of UltraTextEditor(ultraTextEditor2).
When I start typing(this is test ..), TextChanged, KeyPress and PreviewKeyDown events are not fired. what could be the reason?
This is intentional. The editor component provides a copy of it's internal editor for use by the grid, but the grid isn't using the actual control.
The grid has it's own events you can use.
So ... what event should we handle in place of PreviewKeyDown or some other way to respond to a key combination like CTRL+Q?