I am listening to KeyDown events because I want to cycle through my PivotItems with Control+(Shift)+Tab. However, the Control and Shift key don't trigger the event. Why is that?
In code behind:
rootPivot.KeyDown += (s, e) => {
if(Window.Current.CoreWindow.GetKeyState(VirtualKey.Control).HasFlag(CoreVirtualKeyStates.Down) && e.Key == VirtualKey.Tab) {
//Change selected index
}
e.Handled = true;
};