Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / BindableAttribute.cs / 1 / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProtocolsConfigurationHandler.cs
- RepeaterCommandEventArgs.cs
- DataKey.cs
- AutoResetEvent.cs
- RowParagraph.cs
- DoubleStorage.cs
- DbgUtil.cs
- CoreChannel.cs
- PropertySourceInfo.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- SqlBulkCopyColumnMappingCollection.cs
- InvalidDataException.cs
- ErrorEventArgs.cs
- GenericsNotImplementedException.cs
- SelectedDatesCollection.cs
- Stroke2.cs
- DataSvcMapFile.cs
- TreeNodeStyleCollection.cs
- Win32.cs
- RectangleF.cs
- AlignmentYValidation.cs
- SystemMulticastIPAddressInformation.cs
- DataGridViewCellValidatingEventArgs.cs
- login.cs
- PrivateFontCollection.cs
- RTLAwareMessageBox.cs
- BoundPropertyEntry.cs
- SEHException.cs
- WriterOutput.cs
- XmlSerializationReader.cs
- IdnMapping.cs
- XslCompiledTransform.cs
- SoapIgnoreAttribute.cs
- EUCJPEncoding.cs
- AssemblyAttributes.cs
- RegexMatchCollection.cs
- DbConnectionPoolCounters.cs
- BookmarkResumptionRecord.cs
- CompilationUtil.cs
- View.cs
- SelectionHighlightInfo.cs
- HtmlForm.cs
- PropertyKey.cs
- DataGridViewSelectedRowCollection.cs
- ColumnResizeUndoUnit.cs
- CatalogZone.cs
- BindingGraph.cs
- UriWriter.cs
- ViewCellSlot.cs
- Predicate.cs
- AudioException.cs
- SimpleHandlerFactory.cs
- ToggleButtonAutomationPeer.cs
- MaskedTextProvider.cs
- LocalServiceSecuritySettingsElement.cs
- SizeKeyFrameCollection.cs
- ISAPIRuntime.cs
- TextBox.cs
- AssemblyResourceLoader.cs
- MailDefinitionBodyFileNameEditor.cs
- MemberRestriction.cs
- SettingsPropertyIsReadOnlyException.cs
- path.cs
- EnumerableRowCollectionExtensions.cs
- SqlSupersetValidator.cs
- BuildManagerHost.cs
- FrameworkReadOnlyPropertyMetadata.cs
- BamlRecordWriter.cs
- TabControl.cs
- ReverseInheritProperty.cs
- TakeOrSkipQueryOperator.cs
- OpenFileDialog.cs
- SecurityUtils.cs
- SystemColors.cs
- SHA512Managed.cs
- ExceptionHandlerDesigner.cs
- DynamicAttribute.cs
- FtpRequestCacheValidator.cs
- PenLineCapValidation.cs
- BinaryEditor.cs
- SignatureToken.cs
- PostBackTrigger.cs
- XslCompiledTransform.cs
- DocumentApplicationDocumentViewer.cs
- HTTPNotFoundHandler.cs
- ToolStripGripRenderEventArgs.cs
- DispatcherHookEventArgs.cs
- QilTypeChecker.cs
- StreamResourceInfo.cs
- XmlImplementation.cs
- PieceNameHelper.cs
- RemotingClientProxy.cs
- FrameSecurityDescriptor.cs
- RSAPKCS1SignatureFormatter.cs
- BooleanKeyFrameCollection.cs
- HttpException.cs
- DependencyPropertyKey.cs
- ReflectionHelper.cs
- WsdlBuildProvider.cs
- Visual.cs