WPFTabTip icon indicating copy to clipboard operation
WPFTabTip copied to clipboard

Fixed Keyboard not showing second time.

Open marco-calautti opened this issue 6 years ago • 0 comments

I had this issue in a project I am working with. The issue is essentially the fact that the bind occurs only in two cases: Focus (which is the first time the textblock is clicked), and touchdown. However, if the textbox does not loose focus, and one clicks on the textbox with the mouse, instead of using the touch screen, the keyboard will not popup.

This pull request fixes this issue by also binding the PreviewMouseDown event. According to MSDN, we should not override MouseDown, as textboxes have their own behavior for that.

This fix referes Issue 20

marco-calautti avatar May 13 '18 14:05 marco-calautti