Justin
Justin

Reputation: 2479

WPF - Is there a way to cause a UI element to lose focus without changing the focus to something else?

I would like to add an IsFocused property to a custom textbox that I am working on, is there any way to do this?

Upvotes: 1

Views: 726

Answers (1)

Phillip
Phillip

Reputation: 440

Unless I'm mistaken something always has to be in focus. That being said you can Focus to a label or some non-editable/non-selectable element if you need. Or you can focus another application.

In general, however, something is always in focus.

Upvotes: 4

Related Questions