| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // System.ComponentModel.DesignTimeVisibleAttribute.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- // Andreas Nahr ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- // (C) 2003 Andreas Nahr
- //
- namespace System.ComponentModel {
- [AttributeUsage (AttributeTargets.Class | AttributeTargets.Interface)]
- public sealed class DesignTimeVisibleAttribute : Attribute
- {
- #region Fields
- private bool visible;
-
- public static readonly DesignTimeVisibleAttribute Default = new DesignTimeVisibleAttribute (true);
- public static readonly DesignTimeVisibleAttribute No = new DesignTimeVisibleAttribute (false);
- public static readonly DesignTimeVisibleAttribute Yes = new DesignTimeVisibleAttribute (true);
- #endregion // Fields
- #region Constructors
- public DesignTimeVisibleAttribute ()
- : this (true)
- {
- }
- public DesignTimeVisibleAttribute (bool visible)
- {
- this.visible = visible;
- }
- #endregion // Constructors
- #region Properties
- public bool Visible {
- get { return visible; }
- }
- #endregion // Properties
- #region Methods
- public override bool Equals (object obj)
- {
- if (!(obj is DesignTimeVisibleAttribute))
- return false;
- if (obj == this)
- return true;
- return ((DesignTimeVisibleAttribute) obj).Visible == visible;
- }
- public override int GetHashCode ()
- {
- return visible.GetHashCode ();
- }
- public override bool IsDefaultAttribute ()
- {
- return visible == DesignTimeVisibleAttribute.Default.Visible;
- }
- #endregion // Methods
- }
- }
|