|
|
@@ -90,6 +90,9 @@ namespace System.Windows.Forms {
|
|
|
private KeyPressEventHandler HideToolTipKeyHandler;
|
|
|
private MouseEventHandler HideToolTipMouseHandler;
|
|
|
private HelpEventHandler HelpRequestHandler;
|
|
|
+#if NET_2_0
|
|
|
+ private object tag;
|
|
|
+#endif
|
|
|
#endregion // Local Variables
|
|
|
|
|
|
#region Public Constructors
|
|
|
@@ -117,6 +120,19 @@ namespace System.Windows.Forms {
|
|
|
helpnamespace = value;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+#if NET_2_0
|
|
|
+ [Localizable (false)]
|
|
|
+ [Bindable (true)]
|
|
|
+ [TypeConverter (typeof (StringConverter))]
|
|
|
+ [DefaultValue (null)]
|
|
|
+ [MWFCategory ("Data")]
|
|
|
+ public object Tag
|
|
|
+ {
|
|
|
+ get { return this.tag; }
|
|
|
+ set { this.tag = value; }
|
|
|
+ }
|
|
|
+#endif
|
|
|
#endregion // Public Instance Properties
|
|
|
|
|
|
#region Public Instance Methods
|