Example #1
0
 private void UserControl_KeyDown(object sender, KeyEventArgs e)
 {
     KeyAssignCore.HandleEvent(e, AssignRegion.Input);
 }
Example #2
0
 private void Window_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
 {
     KeyAssignCore.HandleEvent(e, AssignRegion.General);
 }
Example #3
0
 private void UserControl_KeyDown(object sender, KeyEventArgs e)
 {
     KeyAssignCore.HandleEvent(e, AssignRegion.Timeline);
     System.Diagnostics.Debug.WriteLine(e.Key);
 }
Example #4
0
 private void TextBox_KeyDown(object sender, KeyEventArgs e)
 {
     KeyAssignCore.HandleEvent(e, AssignRegion.SearchBar);
 }