Is it possible to click a Button without ever losing focus on a TextBox?

I am trying to develop a touchscreen keyboard control in a C# WPF project that will be visible when a TextBox gets focus and is hidden when the TextBox loses focus. The projects I have seen for touchscreen keyboards have accomplished this by defining the keyboard as a new window rather than a control.

For my application, I would really like to have the keyboard as a control within the main application window. Is there a way to allow a button to be clicked (on the keyboard control) without causing the TextBox to lose focus? Ideally, I would like to just place a character at the current position of the carat.


Set Focusable="False" on the Button. You will still be able to click it with the mouse, and it will still call your click event handler, but it won't acquire focus or cause the TextBox to lose focus.


An alternative is to use a PictureBox instead oa Button, then you would customize it. PictureBoxes don't lose focus when clicked.

链接地址: http://www.djcxy.com/p/39250.html

上一篇: 如何启动一个虚拟键盘而不失去在WinXP的焦点?

下一篇: 是否有可能点击一个按钮,而不会失去对TextBox的焦点?