tags:

views:

230

answers:

2

I have a TextInput object that highlights when it is focused...I would like it not to highlight when it is focused...seems like something that should be simple but I can't figure out a way to stop it? Any ideas?

Thanks!

+3  A: 

Just set the focusThickness style to 0.

Simon
Thanks, I knew it had to be easy!
John Isaacks
A: 

focusEnabled="false" will prevent tabbing at all if it not needed

Rodion Bykov