Skip to content

Instantly share code, notes, and snippets.

View sandyarmstrong's full-sized avatar

Sandy Armstrong sandyarmstrong

View GitHub Profile
public class KeyboardTabBehavior : Behavior<UIElement>
{
private KeyboardTabHelper _keyboardTabHelper;
protected override void OnAttached()
{
base.OnAttached();
_keyboardTabHelper = new KeyboardTabHelper(AssociatedObject);
}