Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / FormCollection.cs / 1 / FormCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.Globalization; ////// /// public class FormCollection : ReadOnlyCollectionBase { internal static object CollectionSyncRoot = new object(); ////// This is a read only collection of Forms exposed as a static property of the /// Application class. This is used to store all the currently loaded forms in an app. /// ////// /// public virtual Form this[string name] { get { if (name != null) { lock (CollectionSyncRoot) { foreach(Form form in InnerList) { if (string.Equals(form.Name, name, StringComparison.OrdinalIgnoreCase)) { return form; } } } } return null; } } ////// Gets a form specified by name, if present, else returns null. If there are multiple /// forms with matching names, the first form found is returned. /// ////// /// public virtual Form this[int index] { get { Form f = null; lock (CollectionSyncRoot) { f = (Form) InnerList[index]; } return f; } } ////// Gets a form specified by index. /// ////// Used internally to add a Form to the FormCollection /// internal void Add(Form form) { lock (CollectionSyncRoot) { InnerList.Add(form); } } ////// Used internally to check if a Form is in the FormCollection /// internal bool Contains(Form form) { bool inCollection = false; lock (CollectionSyncRoot) { inCollection = InnerList.Contains(form); } return inCollection; } ////// Used internally to add a Form to the FormCollection /// internal void Remove(Form form) { lock (CollectionSyncRoot) { InnerList.Remove(form); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MatrixUtil.cs
- ToolboxItem.cs
- NonParentingControl.cs
- ToolStripOverflow.cs
- SqlWebEventProvider.cs
- NetworkInformationPermission.cs
- HostedController.cs
- Point.cs
- ResourceExpression.cs
- WindowsTab.cs
- SkewTransform.cs
- DiscardableAttribute.cs
- ContentControl.cs
- StorageModelBuildProvider.cs
- AllMembershipCondition.cs
- StateMachineDesignerPaint.cs
- COMException.cs
- PluralizationService.cs
- UnmanagedHandle.cs
- MsmqProcessProtocolHandler.cs
- SoapAttributes.cs
- FileUpload.cs
- IgnoreFileBuildProvider.cs
- MemberNameValidator.cs
- ActivationServices.cs
- DetailsViewUpdateEventArgs.cs
- AuthenticationServiceManager.cs
- MarkerProperties.cs
- ParenthesizePropertyNameAttribute.cs
- QuestionEventArgs.cs
- BaseTreeIterator.cs
- SerializableAttribute.cs
- TextCompositionManager.cs
- CngProperty.cs
- DataConnectionHelper.cs
- DeferredElementTreeState.cs
- HexParser.cs
- SystemIPGlobalStatistics.cs
- OutputCacheSettings.cs
- SafeBitVector32.cs
- HttpResponse.cs
- XsdDuration.cs
- AuditLevel.cs
- AssemblyCache.cs
- PerformanceCounterPermissionAttribute.cs
- DecimalKeyFrameCollection.cs
- DBConnectionString.cs
- WebBrowserHelper.cs
- ColorContextHelper.cs
- GlyphsSerializer.cs
- DefaultProfileManager.cs
- KeyConstraint.cs
- KnownTypesProvider.cs
- Bold.cs
- DropShadowEffect.cs
- BitmapCodecInfoInternal.cs
- Accessors.cs
- ScrollPatternIdentifiers.cs
- SqlConnectionString.cs
- ConstNode.cs
- StringDictionaryWithComparer.cs
- SqlCachedBuffer.cs
- Wildcard.cs
- OleDbCommandBuilder.cs
- InstanceKeyNotReadyException.cs
- StorageMappingFragment.cs
- ConfigurationStrings.cs
- FormView.cs
- XmlDesigner.cs
- HuffModule.cs
- Int32AnimationUsingKeyFrames.cs
- DataServiceExpressionVisitor.cs
- TypeTypeConverter.cs
- ReferencedCollectionType.cs
- NotFiniteNumberException.cs
- DataProtection.cs
- CompiledXpathExpr.cs
- AsnEncodedData.cs
- Point3DCollection.cs
- AnnouncementEventArgs.cs
- CodeThrowExceptionStatement.cs
- SyndicationSerializer.cs
- RestHandler.cs
- GeneralTransform3DGroup.cs
- WebPermission.cs
- ViewStateException.cs
- FaultPropagationRecord.cs
- RulePatternOps.cs
- LinkedResource.cs
- HeaderUtility.cs
- XmlWriterDelegator.cs
- SqlDelegatedTransaction.cs
- PauseStoryboard.cs
- HttpCacheVaryByContentEncodings.cs
- TdsParserStaticMethods.cs
- PropertyDescriptorCollection.cs
- WindowsGraphics2.cs
- PeerCollaborationPermission.cs
- Classification.cs
- XPathQilFactory.cs