Properly update the combo box selected text when the current item is changed, and...
[mono.git] / mcs / class / WindowsBase / System.Windows / LocalValueEntry.cs
index e574ed3531043e455da153e723116b0fd23fe6df..8ef695a685c7e044b98f19cf57fd0260b2be9b6e 100644 (file)
@@ -30,6 +30,12 @@ namespace System.Windows {
        public struct LocalValueEntry {
                private DependencyProperty property;
                private object value;
+
+               internal LocalValueEntry(DependencyProperty property, object value)
+               {
+                       this.property = property;
+                       this.value = value;
+               }
                
                public DependencyProperty Property {
                        get { return property; }
@@ -39,10 +45,24 @@ namespace System.Windows {
                        get { return value; }
                }
 
-               internal LocalValueEntry(DependencyProperty property, object value)
+               public static bool operator != (LocalValueEntry obj1, LocalValueEntry obj2)
                {
-                       this.property = property;
-                       this.value = value;
+                       throw new NotImplementedException ();
+               }
+
+               public static bool operator == (LocalValueEntry obj1, LocalValueEntry obj2)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public override bool Equals (object obj)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public override int GetHashCode ()
+               {
+                       throw new NotImplementedException ();
                }
        }
 }