tags:

views:

19

answers:

1

Is there a way to make the caret in a textbox visible even when the textbox has lost focus?

A: 

Maybe this is not you want, but i have used it. Actually you can set FocusManager.IsFocusScope="True" on your textbox, so it will always has focus it's own focus. It means caret will be always visible. You can enable/disable such behaviour FocusManager.IsFocusScope="True"/"False"

iyalovoi