M.Azad
M.Azad

Reputation: 3763

How to Set that my element dont get Tabfocus?

I have a control Transition Control in mvvm.I want that in this sample the content control can not got keyboardfocus...how do it?

Upvotes: 0

Views: 76

Answers (3)

Danield
Danield

Reputation: 125443

Try using <ContentControl IsTabStop="False".. /> rather than KeyBoardNavigation.IsTabStop

Upvotes: 1

Tomislav Markovski
Tomislav Markovski

Reputation: 12346

You need IsTabStop property.

Upvotes: 1

Matten
Matten

Reputation: 17631

Have a look at the MSDN to enable tab stop.

Upvotes: 1

Related Questions