client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs
changeset 27 f292db96b050
parent 20 c2dd8119a6c1
child 36 b6df6fce6e5d
--- a/client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs	Tue Dec 22 16:22:22 2009 +0100
+++ b/client/src/Iri.Modernisation.Controls/ViewModel/ProductionTimeLine/CustomableVideoElementVM.cs	Mon Jan 04 10:29:39 2010 +0100
@@ -82,8 +82,8 @@
             }
         }
 
-        private double _duration;
-        public new double Duration
+        
+        public double Duration
         {
             get
             {
@@ -106,7 +106,27 @@
             }
         }
 
-        public new TimeSpan DurationTimeSpan
+        private Color _chapterColor;
+        public Color ChapterColor
+        {
+            get
+            {
+                return _chapterColor;
+            }
+            set
+            {
+                _chapterColor = value;
+                OnPropertyChanged("ChapterColor");
+            }
+        }
+        public SolidColorBrush ChapterSolidColorBrush
+        {
+            get
+            {
+                return new SolidColorBrush(this.ChapterColor);
+            }
+        }
+        public TimeSpan DurationTimeSpan
         {
             get
             {