diff -r 7b7f95dc9027 -r b18627685565 src/FingersDance.Control.Player/UserControlPlayer.xaml.cs --- 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; } } }