Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / BindingsCollection.cs / 1305376 / 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
- ConfigPathUtility.cs
- Utility.cs
- TimeSpanSecondsConverter.cs
- TimeSpan.cs
- BadImageFormatException.cs
- SequenceFullException.cs
- UnknownWrapper.cs
- MetadataException.cs
- VectorKeyFrameCollection.cs
- WebPartExportVerb.cs
- DataServiceQueryProvider.cs
- DataObjectAttribute.cs
- DataGridViewColumnCollectionDialog.cs
- XhtmlBasicTextBoxAdapter.cs
- TextMarkerSource.cs
- EncoderReplacementFallback.cs
- SafeTimerHandle.cs
- CommandValueSerializer.cs
- SourceElementsCollection.cs
- WebBrowserUriTypeConverter.cs
- Themes.cs
- CombinedGeometry.cs
- DynamicMethod.cs
- DataGridViewMethods.cs
- CompiledAction.cs
- LoginName.cs
- WebPartConnectionsConfigureVerb.cs
- SmiEventSink_Default.cs
- SiteMapDataSourceView.cs
- CallbackHandler.cs
- SqlDataSourceQueryConverter.cs
- FamilyCollection.cs
- EndOfStreamException.cs
- XmlSerializationReader.cs
- ReadOnlyDataSource.cs
- ThemeDirectoryCompiler.cs
- WebPartMinimizeVerb.cs
- TextPenaltyModule.cs
- DrawingGroupDrawingContext.cs
- UpdatePanelTriggerCollection.cs
- SafeBitVector32.cs
- AsyncResult.cs
- HtmlTitle.cs
- EncryptedReference.cs
- OutputCacheModule.cs
- XmlSchemaDatatype.cs
- DefaultValueMapping.cs
- StylusTip.cs
- PeerNameRecordCollection.cs
- ProtocolsConfiguration.cs
- CapabilitiesPattern.cs
- TextViewSelectionProcessor.cs
- ConditionedDesigner.cs
- BasicBrowserDialog.designer.cs
- WorkItem.cs
- FunctionDetailsReader.cs
- XmlValidatingReaderImpl.cs
- XmlNullResolver.cs
- SqlFunctionAttribute.cs
- IdentifierCreationService.cs
- TdsValueSetter.cs
- InstanceData.cs
- FileVersion.cs
- UpDownBase.cs
- IteratorAsyncResult.cs
- TextParagraphCache.cs
- SoapIncludeAttribute.cs
- RegexWorker.cs
- SqlErrorCollection.cs
- UnsafeNativeMethods.cs
- ButtonDesigner.cs
- ColorAnimationUsingKeyFrames.cs
- TemplateControl.cs
- HttpRuntimeSection.cs
- SchemaExporter.cs
- BoundPropertyEntry.cs
- FlowDocumentFormatter.cs
- BaseTemplateParser.cs
- TextEditorParagraphs.cs
- EntitySetRetriever.cs
- ValidatorCollection.cs
- XhtmlBasicImageAdapter.cs
- Repeater.cs
- XmlWrappingReader.cs
- X509Certificate2Collection.cs
- IgnoreSectionHandler.cs
- ConfigXmlAttribute.cs
- InputProviderSite.cs
- QueryOutputWriter.cs
- DbConnectionStringBuilder.cs
- PolicyVersion.cs
- FaultException.cs
- Enumerable.cs
- PerformanceCounterManager.cs
- DataGridViewRowConverter.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ChooseAction.cs
- BrushMappingModeValidation.cs
- ModelMemberCollection.cs
- TextEndOfSegment.cs