So I have a UserControl that is used to play a video. This control is displayed as an overlay of other controls. The controls behind the UC with the video player have a Back button that allows the user to move around the UI. The problem is that when the video is playing, the user can still use the keyboard to navigate to the back button, and then interact with the UI. What I need is this:
When the video is playing, the keyboard should essentially be disabled. If that's not possible, I need to disable to the user from pressing the Tab key (or having the Tab key do anything) while the video is playing.
Any thoughts?