equal
deleted
inserted
replaced
5 /// <summary> |
5 /// <summary> |
6 /// Commandes |
6 /// Commandes |
7 /// </summary> |
7 /// </summary> |
8 public static class Commands |
8 public static class Commands |
9 { |
9 { |
10 /// <summary> |
10 |
11 /// Horloge Interne, Principalement pour syncroniser la position d'une video avec sa barre de défilement |
|
12 /// </summary> |
|
13 public static System.Windows.Threading.DispatcherTimer VideoPositionTimer = new System.Windows.Threading.DispatcherTimer(); |
|
14 |
|
15 /// <summary> |
11 /// <summary> |
16 /// Commandes relatives au ConsultMenu |
12 /// Commandes relatives au ConsultMenu |
17 /// </summary> |
13 /// </summary> |
18 public static class ConsultMenu |
14 public static class ConsultMenu |
19 { |
15 { |
461 { |
457 { |
462 Action = new Command("Action"); |
458 Action = new Command("Action"); |
463 TimeChange = new Command("TimeChange"); |
459 TimeChange = new Command("TimeChange"); |
464 FlipView = new Command("FlipView"); |
460 FlipView = new Command("FlipView"); |
465 GoToTime = new Command("GoToTime"); |
461 GoToTime = new Command("GoToTime"); |
466 VideoPositionTimer.Interval = new System.TimeSpan(0, 0,0,0,1000); |
462 |
467 // VideoPositionTimer.Tick += new EventHandler(Each_Tick); |
463 // VideoPositionTimer.Tick += new EventHandler(Each_Tick); |
468 |
464 |
469 |
465 |
470 } |
466 } |
471 public static Command Action |
467 public static Command Action |