Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- PreviewKeyDownEventArgs.cs
- Msmq.cs
- EntityStoreSchemaFilterEntry.cs
- ChannelBinding.cs
- XmlValidatingReaderImpl.cs
- FamilyTypeface.cs
- PathFigureCollection.cs
- ActionFrame.cs
- HostedTransportConfigurationBase.cs
- ProxyWebPart.cs
- SqlConnectionHelper.cs
- XPathSingletonIterator.cs
- WindowsSlider.cs
- ThicknessAnimationBase.cs
- InternalCache.cs
- SqlColumnizer.cs
- LinkClickEvent.cs
- ListViewSelectEventArgs.cs
- XmlAttributeOverrides.cs
- exports.cs
- CodeBlockBuilder.cs
- SystemIPInterfaceProperties.cs
- EntityParameter.cs
- Int32Rect.cs
- PagePropertiesChangingEventArgs.cs
- DeviceSpecificChoiceCollection.cs
- LinqDataSourceInsertEventArgs.cs
- InArgumentConverter.cs
- Number.cs
- ExceptionTranslationTable.cs
- XmlElement.cs
- CollectionBase.cs
- ConfigurationStrings.cs
- CellTreeNode.cs
- DocumentScope.cs
- HierarchicalDataBoundControl.cs
- MsmqIntegrationBinding.cs
- MarkupCompilePass2.cs
- SeekStoryboard.cs
- HandlerBase.cs
- LicFileLicenseProvider.cs
- ErrorTableItemStyle.cs
- ToolStripSystemRenderer.cs
- TextProperties.cs
- WindowsTreeView.cs
- XmlReflectionImporter.cs
- CodeTypeDeclarationCollection.cs
- DBPropSet.cs
- odbcmetadatacolumnnames.cs
- HandleCollector.cs
- EllipticalNodeOperations.cs
- LoginUtil.cs
- ContentPresenter.cs
- Timer.cs
- XmlDocumentType.cs
- ProfilePropertySettings.cs
- HttpCacheVary.cs
- PerformanceCounterPermission.cs
- HtmlWindowCollection.cs
- CheckBoxList.cs
- PeerServiceMessageContracts.cs
- MULTI_QI.cs
- CodeTypeParameter.cs
- DataSource.cs
- ValidationPropertyAttribute.cs
- OdbcUtils.cs
- ToolStripMenuItem.cs
- UriParserTemplates.cs
- AmbientLight.cs
- SignatureDescription.cs
- ContextBase.cs
- LinqDataSourceSelectEventArgs.cs
- FunctionCommandText.cs
- AutoScrollExpandMessageFilter.cs
- BinaryWriter.cs
- NamedPermissionSet.cs
- XmlIlGenerator.cs
- TextSchema.cs
- PropertyDescriptor.cs
- Separator.cs
- GeometryDrawing.cs
- DescendantQuery.cs
- ExecutionContext.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- DrawingContext.cs
- ArrayExtension.cs
- WindowsProgressbar.cs
- DataServiceEntityAttribute.cs
- SocketElement.cs
- SubclassTypeValidatorAttribute.cs
- ComponentChangingEvent.cs
- LineGeometry.cs
- PageContent.cs
- BitConverter.cs
- PrintEvent.cs
- ListBoxChrome.cs
- Point3DAnimationUsingKeyFrames.cs
- DataGridViewImageColumn.cs
- XmlNodeList.cs
- MSAANativeProvider.cs