Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / BindingsCollection.cs / 1 / BindingsCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using Microsoft.Win32; using System.Diagnostics; using System.ComponentModel; using System.Collections; ////// /// [DefaultEvent("CollectionChanged")] public class BindingsCollection : System.Windows.Forms.BaseCollection { private ArrayList list; private CollectionChangeEventHandler onCollectionChanging; private CollectionChangeEventHandler onCollectionChanged; // internalonly internal BindingsCollection() { } ///Represents a collection of data bindings on a control. ///public override int Count { get { if (list == null) { return 0; } return base.Count; } } /// /// /// /// protected override ArrayList List { get { if (list == null) list = new ArrayList(); return list; } } ////// Gets the bindings in the collection as an object. /// ////// /// public Binding this[int index] { get { return (Binding) List[index]; } } ///Gets the ///at the specified index. // internalonly internal protected void Add(Binding binding) { CollectionChangeEventArgs ccevent = new CollectionChangeEventArgs(CollectionChangeAction.Add, binding); OnCollectionChanging(ccevent); AddCore(binding); OnCollectionChanged(ccevent); } // internalonly /// /// /// /// protected virtual void AddCore(Binding dataBinding) { if (dataBinding == null) throw new ArgumentNullException("dataBinding"); List.Add(dataBinding); } ////// Adds a ////// to the collection. /// /// /// [SRDescription(SR.collectionChangingEventDescr)] public event CollectionChangeEventHandler CollectionChanging { add { onCollectionChanging += value; } remove { onCollectionChanging -= value; } } ////// Occurs when the collection is about to change. /// ////// /// [SRDescription(SR.collectionChangedEventDescr)] public event CollectionChangeEventHandler CollectionChanged { add { onCollectionChanged += value; } remove { onCollectionChanged -= value; } } // internalonly ////// Occurs when the collection is changed. /// ///internal protected void Clear() { CollectionChangeEventArgs ccevent = new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null); OnCollectionChanging(ccevent); ClearCore(); OnCollectionChanged(ccevent); } // internalonly /// /// /// /// protected virtual void ClearCore() { List.Clear(); } ////// Clears the collection of any members. /// ////// /// protected virtual void OnCollectionChanging(CollectionChangeEventArgs e) { if (onCollectionChanging != null) { onCollectionChanging(this, e); } } ////// Raises the ///event. /// /// /// protected virtual void OnCollectionChanged(CollectionChangeEventArgs ccevent) { if (onCollectionChanged != null) { onCollectionChanged(this, ccevent); } } ////// Raises the ///event. /// // internalonly internal protected void Remove(Binding binding) { CollectionChangeEventArgs ccevent = new CollectionChangeEventArgs(CollectionChangeAction.Remove, binding); OnCollectionChanging(ccevent); RemoveCore(binding); OnCollectionChanged(ccevent); } /// // internalonly internal protected void RemoveAt(int index) { Remove(this[index]); } // internalonly /// /// /// /// protected virtual void RemoveCore(Binding dataBinding) { List.Remove(dataBinding); } ////// Removes the specified ///from the collection. /// // internalonly internal protected bool ShouldSerializeMyAll() { return Count > 0; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using Microsoft.Win32; using System.Diagnostics; using System.ComponentModel; using System.Collections; ////// /// [DefaultEvent("CollectionChanged")] public class BindingsCollection : System.Windows.Forms.BaseCollection { private ArrayList list; private CollectionChangeEventHandler onCollectionChanging; private CollectionChangeEventHandler onCollectionChanged; // internalonly internal BindingsCollection() { } ///Represents a collection of data bindings on a control. ///public override int Count { get { if (list == null) { return 0; } return base.Count; } } /// /// /// /// protected override ArrayList List { get { if (list == null) list = new ArrayList(); return list; } } ////// Gets the bindings in the collection as an object. /// ////// /// public Binding this[int index] { get { return (Binding) List[index]; } } ///Gets the ///at the specified index. // internalonly internal protected void Add(Binding binding) { CollectionChangeEventArgs ccevent = new CollectionChangeEventArgs(CollectionChangeAction.Add, binding); OnCollectionChanging(ccevent); AddCore(binding); OnCollectionChanged(ccevent); } // internalonly /// /// /// /// protected virtual void AddCore(Binding dataBinding) { if (dataBinding == null) throw new ArgumentNullException("dataBinding"); List.Add(dataBinding); } ////// Adds a ////// to the collection. /// /// /// [SRDescription(SR.collectionChangingEventDescr)] public event CollectionChangeEventHandler CollectionChanging { add { onCollectionChanging += value; } remove { onCollectionChanging -= value; } } ////// Occurs when the collection is about to change. /// ////// /// [SRDescription(SR.collectionChangedEventDescr)] public event CollectionChangeEventHandler CollectionChanged { add { onCollectionChanged += value; } remove { onCollectionChanged -= value; } } // internalonly ////// Occurs when the collection is changed. /// ///internal protected void Clear() { CollectionChangeEventArgs ccevent = new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null); OnCollectionChanging(ccevent); ClearCore(); OnCollectionChanged(ccevent); } // internalonly /// /// /// /// protected virtual void ClearCore() { List.Clear(); } ////// Clears the collection of any members. /// ////// /// protected virtual void OnCollectionChanging(CollectionChangeEventArgs e) { if (onCollectionChanging != null) { onCollectionChanging(this, e); } } ////// Raises the ///event. /// /// /// protected virtual void OnCollectionChanged(CollectionChangeEventArgs ccevent) { if (onCollectionChanged != null) { onCollectionChanged(this, ccevent); } } ////// Raises the ///event. /// // internalonly internal protected void Remove(Binding binding) { CollectionChangeEventArgs ccevent = new CollectionChangeEventArgs(CollectionChangeAction.Remove, binding); OnCollectionChanging(ccevent); RemoveCore(binding); OnCollectionChanged(ccevent); } /// // internalonly internal protected void RemoveAt(int index) { Remove(this[index]); } // internalonly /// /// /// /// protected virtual void RemoveCore(Binding dataBinding) { List.Remove(dataBinding); } ////// Removes the specified ///from the collection. /// // internalonly internal protected bool ShouldSerializeMyAll() { return Count > 0; } } } // 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
- TraceHandler.cs
- ValidatingPropertiesEventArgs.cs
- SafeArrayTypeMismatchException.cs
- PageMediaType.cs
- ToolTipService.cs
- ArgIterator.cs
- StringUtil.cs
- ReadOnlyTernaryTree.cs
- ValidationRule.cs
- DataTemplate.cs
- CodeExpressionCollection.cs
- WebConfigurationHostFileChange.cs
- ParsedAttributeCollection.cs
- TextElementEnumerator.cs
- DataServiceKeyAttribute.cs
- FileAuthorizationModule.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- EntityDataSourceDesigner.cs
- DescendentsWalkerBase.cs
- Simplifier.cs
- VisualBasicValue.cs
- InternalPolicyElement.cs
- BinaryFormatter.cs
- FamilyTypeface.cs
- DataGridViewCellMouseEventArgs.cs
- TempFiles.cs
- AsymmetricKeyExchangeFormatter.cs
- CalendarDay.cs
- Vector3DConverter.cs
- DataGridViewAutoSizeModeEventArgs.cs
- HttpListener.cs
- WindowsToolbarAsMenu.cs
- TemplateContentLoader.cs
- SiteMapPathDesigner.cs
- DesignerPerfEventProvider.cs
- HuffmanTree.cs
- IdentityNotMappedException.cs
- ViewValidator.cs
- MultiAsyncResult.cs
- ITreeGenerator.cs
- XmlSchemaExternal.cs
- ColumnMapCopier.cs
- FormViewCommandEventArgs.cs
- _OverlappedAsyncResult.cs
- LogicalTreeHelper.cs
- SystemColors.cs
- ScriptManagerProxy.cs
- PartialCachingAttribute.cs
- TextSegment.cs
- TargetConverter.cs
- WindowsSysHeader.cs
- SqlUtil.cs
- _ContextAwareResult.cs
- MatcherBuilder.cs
- SectionRecord.cs
- RestHandlerFactory.cs
- CodeCastExpression.cs
- SafeRegistryKey.cs
- FixedSOMFixedBlock.cs
- BlockingCollection.cs
- Transform.cs
- DesignerResources.cs
- HostAdapter.cs
- PipelineComponent.cs
- XmlNamedNodeMap.cs
- CryptoStream.cs
- Rect3DConverter.cs
- CallTemplateAction.cs
- PeerObject.cs
- XmlSchemaSubstitutionGroup.cs
- LinkedDataMemberFieldEditor.cs
- TypeEnumerableViewSchema.cs
- CompositeActivityMarkupSerializer.cs
- FixedPageStructure.cs
- NameScopePropertyAttribute.cs
- Decoder.cs
- ArraySubsetEnumerator.cs
- Clause.cs
- XPathScanner.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- StyleXamlParser.cs
- PlainXmlWriter.cs
- SqlDeflator.cs
- ScrollData.cs
- ResourceProperty.cs
- ContourSegment.cs
- ButtonFlatAdapter.cs
- TerminatorSinks.cs
- FormViewPageEventArgs.cs
- MetadataSource.cs
- SoapMessage.cs
- PathParser.cs
- ButtonStandardAdapter.cs
- StylusSystemGestureEventArgs.cs
- TraversalRequest.cs
- XmlDeclaration.cs
- ArgumentOutOfRangeException.cs
- ParseElement.cs
- SoapAttributeOverrides.cs
- ColorConvertedBitmap.cs