L
Lloyd Dupont
I'm writing a custom Text editor.
My idea was to override ProcessDialogKey to handle command keys, such as the
arrow or delete
and to override OnKeyPress to get char typed.
Now I discover a few weird issues:
- the space key don't trigger OnKeyPress
- the backspace key does trigger OnKeyPress (with '\b')
is it something normal (why is that) and stable (I could rely on next
version to be like that as well)?
My idea was to override ProcessDialogKey to handle command keys, such as the
arrow or delete
and to override OnKeyPress to get char typed.
Now I discover a few weird issues:
- the space key don't trigger OnKeyPress
- the backspace key does trigger OnKeyPress (with '\b')
is it something normal (why is that) and stable (I could rely on next
version to be like that as well)?