Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / BindableAttribute.cs / 1305376 / BindableAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class BindableAttribute : Attribute { ///Specifies whether a property is appropriate to bind data /// to. ////// public static readonly BindableAttribute Yes = new BindableAttribute(true); ////// Specifies that a property is appropriate to bind data to. This /// ///field is read-only. /// /// public static readonly BindableAttribute No = new BindableAttribute(false); ////// Specifies that a property is not appropriate to bind /// data to. This ///field is read-only. /// /// public static readonly BindableAttribute Default = No; private bool bindable = false; private bool isDefault = false; private BindingDirection direction; ////// Specifies the default value for the ///, /// which is . This field is /// read-only. /// /// public BindableAttribute(bool bindable) : this(bindable, BindingDirection.OneWay) { } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(bool bindable, BindingDirection direction) { this.bindable = bindable; this.direction = direction; } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(BindableSupport flags) : this(flags, BindingDirection.OneWay) { } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(BindableSupport flags, BindingDirection direction) { this.bindable = (flags != BindableSupport.No); this.isDefault = (flags == BindableSupport.Default); this.direction = direction; } ////// Initializes a new instance of the ///class. /// /// public bool Bindable { get { return bindable; } } ////// Gets a value indicating /// whether a property is appropriate to bind data to. /// ////// public BindingDirection Direction { get { return direction; } } ////// Gets a value indicating /// the direction(s) this property be bound to data. /// ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } if (obj != null && obj is BindableAttribute) { return (((BindableAttribute)obj).Bindable == bindable); } return false; } ////// public override int GetHashCode() { return bindable.GetHashCode(); } ///[To be supplied.] ////// ///public override bool IsDefaultAttribute() { return (this.Equals(Default) || isDefault); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NavigationProgressEventArgs.cs
- ControlTemplate.cs
- Propagator.ExtentPlaceholderCreator.cs
- MemberHolder.cs
- FixedStringLookup.cs
- NameValueConfigurationCollection.cs
- NumberSubstitution.cs
- WizardDesigner.cs
- SystemInformation.cs
- ByteConverter.cs
- FactoryId.cs
- ProfileGroupSettingsCollection.cs
- DataGridViewCellStyleConverter.cs
- ScalarConstant.cs
- Error.cs
- DuplexChannel.cs
- XomlDesignerLoader.cs
- AllMembershipCondition.cs
- HtmlControl.cs
- WpfXamlLoader.cs
- recordstate.cs
- DockAndAnchorLayout.cs
- ListViewUpdateEventArgs.cs
- Graph.cs
- OdbcFactory.cs
- DataGridColumnCollection.cs
- ProcessManager.cs
- MtomMessageEncodingBindingElement.cs
- securitycriticaldata.cs
- FileDetails.cs
- SecurityRuntime.cs
- Transform3DGroup.cs
- SetIterators.cs
- OledbConnectionStringbuilder.cs
- OleServicesContext.cs
- SqlDataSourceView.cs
- KeyManager.cs
- Membership.cs
- UserControl.cs
- DependentList.cs
- DictionaryCustomTypeDescriptor.cs
- CommandBinding.cs
- RangeValueProviderWrapper.cs
- TypeCollectionPropertyEditor.cs
- future.cs
- WebDescriptionAttribute.cs
- SQLInt64Storage.cs
- XmlUTF8TextWriter.cs
- CaseInsensitiveHashCodeProvider.cs
- Main.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- Configuration.cs
- CreationContext.cs
- InvalidCastException.cs
- DBConcurrencyException.cs
- SQLInt64Storage.cs
- DataMemberConverter.cs
- ByteArrayHelperWithString.cs
- RangeValidator.cs
- ConfigurationSection.cs
- OracleInfoMessageEventArgs.cs
- XmlCompatibilityReader.cs
- InvariantComparer.cs
- SoapHeaderAttribute.cs
- BindStream.cs
- MultilineStringConverter.cs
- XsdCachingReader.cs
- MenuCommand.cs
- OutputCacheSettingsSection.cs
- MeasurementDCInfo.cs
- DataGridHeaderBorder.cs
- SafeFileHandle.cs
- ThreadAbortException.cs
- KnownAssembliesSet.cs
- FileSystemInfo.cs
- VScrollProperties.cs
- SvcMapFileLoader.cs
- RtfControls.cs
- FieldBuilder.cs
- ZipFileInfoCollection.cs
- NetworkInformationPermission.cs
- AsyncCompletedEventArgs.cs
- ObjectDataSourceMethodEventArgs.cs
- RSAPKCS1SignatureDeformatter.cs
- Rect.cs
- AssemblyNameProxy.cs
- ToolStripSeparator.cs
- CodeGroup.cs
- SafeThemeHandle.cs
- RecommendedAsConfigurableAttribute.cs
- ProbeDuplexCD1AsyncResult.cs
- FunctionMappingTranslator.cs
- GeneralTransform.cs
- PrimitiveType.cs
- Int32.cs
- AttributeCollection.cs
- Annotation.cs
- InputEventArgs.cs
- ComplusTypeValidator.cs
- FontFamilyValueSerializer.cs