Is there a way to set Focus from one control to another using WPF Triggers?
Focus
Trigger
Like the following example:
Is this what you want?
c#:
public void MoveFocusOnClick(object sender, RoutedEventArgs e) { Keyboard.Focus(txtName); // Or your own logic }