Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2011
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. using System;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. using System.Windows.Input;
  5. using System.ComponentModel;
  6. using System.Threading;
  7.  
  8. namespace Calendar
  9. {
  10.     /// <summary>
  11.     /// Logique d'interaction pour MainWindow.xaml
  12.     /// </summary>
  13.     public partial class MainWindow : Window
  14.     {
  15.         TimeSpan last;
  16.  
  17.         public MainWindow()
  18.         {
  19.             InitializeComponent();
  20.         }
  21.  
  22.         private void play_Executed(object sender, ExecutedRoutedEventArgs e)
  23.         {
  24.  
  25.         }
  26.  
  27.         private void stop_Executed(object sender, ExecutedRoutedEventArgs e)
  28.         {
  29.  
  30.         }
  31.  
  32.         private void pause_Executed(object sender, ExecutedRoutedEventArgs e)
  33.         {
  34.  
  35.         }
  36.  
  37.         private void CanExecute(object sender, CanExecuteRoutedEventArgs e)
  38.         {
  39.  
  40.         }
  41.  
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement