Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // // 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
- TemplateColumn.cs
- COM2PropertyDescriptor.cs
- MobileComponentEditorPage.cs
- PropertiesTab.cs
- WorkflowRuntimeEndpoint.cs
- FunctionDetailsReader.cs
- TextEncodedRawTextWriter.cs
- GPStream.cs
- SqlSelectClauseBuilder.cs
- LiteralControl.cs
- Cursor.cs
- ControlParser.cs
- RemoteWebConfigurationHost.cs
- StorageMappingFragment.cs
- RoleServiceManager.cs
- ListDataHelper.cs
- TextCharacters.cs
- DeclaredTypeElement.cs
- DataRecordInfo.cs
- ExtentJoinTreeNode.cs
- CommandManager.cs
- TdsRecordBufferSetter.cs
- Avt.cs
- TextUtf8RawTextWriter.cs
- PlatformNotSupportedException.cs
- SupportsEventValidationAttribute.cs
- ToolStripContainerDesigner.cs
- SyntaxCheck.cs
- TypeContext.cs
- HttpGetProtocolImporter.cs
- DataGridViewBindingCompleteEventArgs.cs
- TextModifier.cs
- DataObjectPastingEventArgs.cs
- NavigationProperty.cs
- FormViewPageEventArgs.cs
- ScriptComponentDescriptor.cs
- SecureConversationServiceCredential.cs
- FixedSOMTable.cs
- GroupQuery.cs
- XmlSchemaComplexContent.cs
- DeclarativeCatalogPart.cs
- IProvider.cs
- RuleSettingsCollection.cs
- ComponentManagerBroker.cs
- SpellerInterop.cs
- ControlParser.cs
- Buffer.cs
- DSACryptoServiceProvider.cs
- BufferBuilder.cs
- InheritanceContextHelper.cs
- mongolianshape.cs
- PropertyGrid.cs
- ProfileModule.cs
- OutputCacheModule.cs
- ProtocolsConfigurationHandler.cs
- UpdateRecord.cs
- SolidColorBrush.cs
- ImageAutomationPeer.cs
- WorkflowViewElement.cs
- GridViewUpdateEventArgs.cs
- DataGridViewCellMouseEventArgs.cs
- LabelEditEvent.cs
- KeyNotFoundException.cs
- OptimizerPatterns.cs
- ReliabilityContractAttribute.cs
- HttpConfigurationSystem.cs
- IChannel.cs
- X509Extension.cs
- BinaryMethodMessage.cs
- SHA256.cs
- WhereQueryOperator.cs
- EmptyElement.cs
- ToolStripSettings.cs
- CopyOfAction.cs
- GifBitmapDecoder.cs
- AsymmetricSignatureFormatter.cs
- X509Certificate.cs
- AssemblyInfo.cs
- IntSecurity.cs
- RectValueSerializer.cs
- LabelEditEvent.cs
- ReflectionPermission.cs
- SqlSelectClauseBuilder.cs
- Splitter.cs
- ModuleConfigurationInfo.cs
- FormsAuthentication.cs
- PositiveTimeSpanValidator.cs
- Menu.cs
- CodeDomConfigurationHandler.cs
- DataGridViewColumn.cs
- UDPClient.cs
- GeometryDrawing.cs
- LinkDescriptor.cs
- DataSetMappper.cs
- StateChangeEvent.cs
- XmlEncoding.cs
- TabletDevice.cs
- AlgoModule.cs
- EventDescriptorCollection.cs
- StaticExtensionConverter.cs