tags:

views:

28

answers:

1

I have wpf application in which I am using "ENTER" key as "TAB & Enter". If data are valid then move to next control.

My problem is that I want to raise TAB event programmatically. Please provide some code.....

+2  A: 

You don't need to send a TAB key event to the application. Instead, use the MoveNext method to move focus to the next control

Thomas Levesque