client/src/Iri.Modernisation.Controls/ViewModel/VideoViewer/VideoViewerVM.cs
changeset 38 bd33267300aa
parent 36 b6df6fce6e5d
--- 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
     {