equal
deleted
inserted
replaced
24 void FlipView_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e) |
24 void FlipView_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e) |
25 { |
25 { |
26 Commands.VideoViewer.Pause.Execute(); |
26 Commands.VideoViewer.Pause.Execute(); |
27 FlipTest.ExecuteFlip(); |
27 FlipTest.ExecuteFlip(); |
28 } |
28 } |
|
29 |
|
30 private void UserControl_KeyDown(object sender, System.Windows.Input.KeyEventArgs e) |
|
31 { |
|
32 if(e.Key == Key.Escape) |
|
33 { |
|
34 Commands.EscapeKeyPressed.Execute(); |
|
35 } |
|
36 } |
29 } |
37 } |
30 } |
38 } |