There isn't because keydown is a per control event in windows. The keyboard is trapped by the control/window that has the focus. In dialogs, the dialog window never has the focus it's always one of its child controls.

That's why there is no on keydown for dialogs. The only way to achieve this would be to intercept all keydown events on each control to relay them back in some fashion to simulate the event.