2007-05-01 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / GridItem.cs
index b3bde90d083d96c60388fc301b398736d667300d..908081b5a6687baa687b8a54e387974b8a81ef56 100644 (file)
@@ -36,6 +36,9 @@ namespace System.Windows.Forms
 
                #region Fields
                private bool expanded;
+#if NET_2_0
+               private object tag;
+#endif
                #endregion Fields
 
                #region Constructors
@@ -91,6 +94,17 @@ namespace System.Windows.Forms
                        get;
                }
 
+#if NET_2_0
+               [Localizable (false)]
+               [Bindable (true)]
+               [DefaultValue (null)]
+               [TypeConverter (typeof (StringConverter))]
+               public Object Tag {
+                       get { return this.tag; }
+                       set { this.tag = value; }
+               }
+#endif
+
                public abstract new object Value
                {
                        get;