Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / GridItemCollection.cs / 1 / GridItemCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.IO; using System.Collections; using System.Globalization; using System.Windows.Forms; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms.Design; using System.Windows.Forms.ComponentModel.Com2Interop; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms.PropertyGridInternal; using System.Reflection; using System.Runtime.InteropServices; using Microsoft.Win32; ////// /// A read-only collection of GridItem objects /// public class GridItemCollection : ICollection { ////// /// public static GridItemCollection Empty = new GridItemCollection(new GridItem[0]); internal GridItem[] entries; internal GridItemCollection(GridItem[] entries) { if (entries == null) { this.entries = new GridItem[0]; } else { this.entries = entries; } } ///[To be supplied.] ////// /// Retrieves the number of member attributes. /// public int Count { get { return entries.Length; } } ////// object ICollection.SyncRoot { get { return this; } } /// /// bool ICollection.IsSynchronized { get { return false; } } /// /// /// Retrieves the member attribute with the specified index. /// public GridItem this[int index] { get { return entries[index]; } } ////// /// public GridItem this[string label]{ get { foreach(GridItem g in entries) { if (g.Label == label) { return g; } } return null; } } ///[To be supplied.] ////// void ICollection.CopyTo(Array dest, int index) { if (entries.Length > 0) { System.Array.Copy(entries, 0, dest, index, entries.Length); } } /// /// /// Creates and retrieves a new enumerator for this collection. /// public IEnumerator GetEnumerator() { return entries.GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.IO; using System.Collections; using System.Globalization; using System.Windows.Forms; using System.Drawing; using System.Drawing.Design; using System.Windows.Forms.Design; using System.Windows.Forms.ComponentModel.Com2Interop; using System.ComponentModel; using System.ComponentModel.Design; using System.Windows.Forms.PropertyGridInternal; using System.Reflection; using System.Runtime.InteropServices; using Microsoft.Win32; ////// /// A read-only collection of GridItem objects /// public class GridItemCollection : ICollection { ////// /// public static GridItemCollection Empty = new GridItemCollection(new GridItem[0]); internal GridItem[] entries; internal GridItemCollection(GridItem[] entries) { if (entries == null) { this.entries = new GridItem[0]; } else { this.entries = entries; } } ///[To be supplied.] ////// /// Retrieves the number of member attributes. /// public int Count { get { return entries.Length; } } ////// object ICollection.SyncRoot { get { return this; } } /// /// bool ICollection.IsSynchronized { get { return false; } } /// /// /// Retrieves the member attribute with the specified index. /// public GridItem this[int index] { get { return entries[index]; } } ////// /// public GridItem this[string label]{ get { foreach(GridItem g in entries) { if (g.Label == label) { return g; } } return null; } } ///[To be supplied.] ////// void ICollection.CopyTo(Array dest, int index) { if (entries.Length > 0) { System.Array.Copy(entries, 0, dest, index, entries.Length); } } /// /// /// Creates and retrieves a new enumerator for this collection. /// public IEnumerator GetEnumerator() { return entries.GetEnumerator(); } } } // 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
- DataSourceSelectArguments.cs
- TypedRowGenerator.cs
- SoapMessage.cs
- _IPv4Address.cs
- AppDomainManager.cs
- RuleSettingsCollection.cs
- _SslState.cs
- CreateCardRequest.cs
- FullTextBreakpoint.cs
- SafeNativeMethods.cs
- SQLInt16.cs
- FunctionQuery.cs
- AxisAngleRotation3D.cs
- SizeChangedInfo.cs
- CodeMemberMethod.cs
- TemplateControlParser.cs
- ServiceOperationWrapper.cs
- TransformerInfo.cs
- DataColumnChangeEvent.cs
- InternalSafeNativeMethods.cs
- DataGridViewColumnCollection.cs
- AutomationAttributeInfo.cs
- XdrBuilder.cs
- TransactionManager.cs
- DataGridViewElement.cs
- TableAdapterManagerNameHandler.cs
- InfoCardRSACryptoProvider.cs
- BinaryObjectInfo.cs
- RichTextBox.cs
- DiagnosticsConfigurationHandler.cs
- SqlMethodCallConverter.cs
- InputLangChangeEvent.cs
- XmlValidatingReaderImpl.cs
- DocumentApplicationState.cs
- StorageConditionPropertyMapping.cs
- SerializationObjectManager.cs
- Duration.cs
- ScrollItemPattern.cs
- TabRenderer.cs
- InputScopeNameConverter.cs
- PageAsyncTask.cs
- TransactionOptions.cs
- FixedTextPointer.cs
- SizeAnimationBase.cs
- OdbcTransaction.cs
- LambdaCompiler.Expressions.cs
- MemberRelationshipService.cs
- SemaphoreFullException.cs
- DropTarget.cs
- ServiceHostFactory.cs
- SqlRowUpdatedEvent.cs
- login.cs
- CompositeCollection.cs
- ComponentCollection.cs
- EventQueueState.cs
- ReadOnlyCollectionBase.cs
- DocumentPaginator.cs
- SecureStringHasher.cs
- CompoundFileReference.cs
- BinaryMethodMessage.cs
- Scripts.cs
- XmlException.cs
- AtomicFile.cs
- CollectionMarkupSerializer.cs
- MediaEntryAttribute.cs
- LOSFormatter.cs
- CacheMode.cs
- XmlEntityReference.cs
- PersistenceTypeAttribute.cs
- InputLangChangeEvent.cs
- M3DUtil.cs
- ToolStripComboBox.cs
- TabOrder.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- TransformedBitmap.cs
- GridViewSortEventArgs.cs
- LocationSectionRecord.cs
- RestHandler.cs
- CodeDelegateCreateExpression.cs
- Imaging.cs
- HostedHttpTransportManager.cs
- ObjectCloneHelper.cs
- ReferentialConstraint.cs
- GridViewRowCollection.cs
- DecoratedNameAttribute.cs
- WS2007HttpBindingCollectionElement.cs
- Button.cs
- ListSortDescription.cs
- SqlCommand.cs
- XPathAxisIterator.cs
- BamlLocalizationDictionary.cs
- XmlSchemaGroup.cs
- DeferredReference.cs
- MarkedHighlightComponent.cs
- ExpressionBuilderCollection.cs
- XmlMembersMapping.cs
- NamespaceImport.cs
- WebPartPersonalization.cs
- NotifyCollectionChangedEventArgs.cs
- CodeLabeledStatement.cs