src/FingersDance.Control.Player/UserControlPlayer.xaml.cs
changeset 5 b18627685565
parent 3 4f1ea403073d
child 10 e8bfe1102e03
--- a/src/FingersDance.Control.Player/UserControlPlayer.xaml.cs	Fri Jul 31 17:59:22 2009 +0200
+++ b/src/FingersDance.Control.Player/UserControlPlayer.xaml.cs	Fri Jul 31 19:19:23 2009 +0200
@@ -65,6 +65,7 @@
                     MediaElementVideo.Play();
                 }
                 catch (Exception ex ) { }
+                ButtonPlayPause.Background = FindResource("[Skin_1]_Pause_button_xaml") as Brush;
             }
             else//Pause
             {
@@ -74,6 +75,7 @@
                     MediaElementVideo.Pause();
                 }
                 catch (Exception exx ) { }
+                ButtonPlayPause.Background = FindResource("[Skin_1]_Play_button_xaml") as Brush;
             }
         }
 	}