tags:

views:

78

answers:

2

I am developing WPF Touch Screen Keyboard.

I need to know how is it possible to make main window non focusable, so other windows will be receiving the input when I click on virtual keyboard buttons.

Simple applying "Focusable="False"" to the main window and all child controls doesn't work.

A: 

I think there is a clickable attribute you can set to false which stops the form receiving click messages.

Chris
A: 

Problem was solved by using Popup instead of Window, which not grab the focus, when you click on it.

StreamT