--- a/client/src/Iri.Modernisation.Controls/ViewModel/VideoViewer/VideoViewerVM.cs Wed Jan 27 10:55:59 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/ViewModel/VideoViewer/VideoViewerVM.cs Thu Feb 04 16:38:04 2010 +0100
@@ -149,8 +149,20 @@
Tick(this, new VideoViewerVMEventArgs(Pos-BeginIn));
}
}
-
+ private bool _isPlayed;
+ public bool IsPLayed
+ {
+ get
+ {
+ return _isPlayed;
+ }
+ set
+ {
+ _isPlayed = value;
+ OnPropertyChanged("IsPlayed");
+ }
+ }
}
public class VideoViewerVMEventArgs : EventArgs
{