Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / ComponentModel / IItemProperties.cs / 1305600 / IItemProperties.cs
//---------------------------------------------------------------------------- // //// Copyright (C) 2007 by Microsoft Corporation. All rights reserved. // // // // Description: Editing functionality for collection views. // // See spec at http://sharepoint/sites/wpftsv/Documents/DataGrid/DataGrid_CollectionView.mht // //--------------------------------------------------------------------------- using System; using System.Collections.ObjectModel; // ReadOnlyCollectionnamespace System.ComponentModel { /// /// IItemProperties is an interface that a collection view /// can implement to expose information about the properties available on /// items in the underlying collection. /// public interface IItemProperties { ////// Returns information about the properties available on items in the /// underlying collection. This information may come from a schema, from /// a type descriptor, from a representative item, or from some other source /// known to the view. /// ReadOnlyCollectionItemProperties { get; } } /// /// Information about a property. Returned by public class ItemPropertyInfo { ////// Creates a new instance of ItemPropertyInfo. public ItemPropertyInfo(string name, Type type, object descriptor) { _name = name; _type = type; _descriptor = descriptor; } ///The property's name. public string Name { get { return _name; } } ///The property's type. public Type PropertyType { get { return _type; } } ///More information about the property. This may be null, /// the view is unable to provide any more information. Or it may be /// an object that describes the property, such as a PropertyDescriptor, /// a PropertyInfo, or the like. /// public object Descriptor { get { return _descriptor; } } string _name; Type _type; object _descriptor; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) 2007 by Microsoft Corporation. All rights reserved. // // // // Description: Editing functionality for collection views. // // See spec at http://sharepoint/sites/wpftsv/Documents/DataGrid/DataGrid_CollectionView.mht // //--------------------------------------------------------------------------- using System; using System.Collections.ObjectModel; // ReadOnlyCollectionnamespace System.ComponentModel { /// /// IItemProperties is an interface that a collection view /// can implement to expose information about the properties available on /// items in the underlying collection. /// public interface IItemProperties { ////// Returns information about the properties available on items in the /// underlying collection. This information may come from a schema, from /// a type descriptor, from a representative item, or from some other source /// known to the view. /// ReadOnlyCollectionItemProperties { get; } } /// /// Information about a property. Returned by public class ItemPropertyInfo { ////// Creates a new instance of ItemPropertyInfo. public ItemPropertyInfo(string name, Type type, object descriptor) { _name = name; _type = type; _descriptor = descriptor; } ///The property's name. public string Name { get { return _name; } } ///The property's type. public Type PropertyType { get { return _type; } } ///More information about the property. This may be null, /// the view is unable to provide any more information. Or it may be /// an object that describes the property, such as a PropertyDescriptor, /// a PropertyInfo, or the like. /// public object Descriptor { get { return _descriptor; } } string _name; Type _type; object _descriptor; } } // 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
- StaticSiteMapProvider.cs
- PresentationTraceSources.cs
- SmiSettersStream.cs
- ColumnHeaderConverter.cs
- ColumnClickEvent.cs
- LogicalExpr.cs
- ColorMap.cs
- SoapHttpTransportImporter.cs
- CustomWebEventKey.cs
- AuthenticatingEventArgs.cs
- GeneralTransform3DCollection.cs
- SystemIPAddressInformation.cs
- NativeCompoundFileAPIs.cs
- TemplateControl.cs
- DataListItemCollection.cs
- FlowDocument.cs
- BuildProvidersCompiler.cs
- Delay.cs
- PackageRelationshipCollection.cs
- AmbiguousMatchException.cs
- X509RawDataKeyIdentifierClause.cs
- ArrayWithOffset.cs
- Point3DCollection.cs
- AsyncResult.cs
- FixedBufferAttribute.cs
- MergePropertyDescriptor.cs
- InternalsVisibleToAttribute.cs
- Util.cs
- ApplicationInfo.cs
- EventlogProvider.cs
- HotSpot.cs
- IndexerNameAttribute.cs
- FontFamily.cs
- TreeNodeEventArgs.cs
- MenuAdapter.cs
- SqlWebEventProvider.cs
- OdbcException.cs
- SmtpReplyReaderFactory.cs
- ApplicationHost.cs
- BamlBinaryWriter.cs
- DodSequenceMerge.cs
- ContainsRowNumberChecker.cs
- Point3DValueSerializer.cs
- Rules.cs
- ProjectionRewriter.cs
- Grid.cs
- ImageAttributes.cs
- CultureData.cs
- DataGridViewDataConnection.cs
- ModelTreeEnumerator.cs
- Solver.cs
- CurrencyManager.cs
- QueryModel.cs
- ACL.cs
- ObjectParameterCollection.cs
- SqlUtils.cs
- XmlILStorageConverter.cs
- DataGridPagerStyle.cs
- PolyBezierSegment.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- TextSelectionHighlightLayer.cs
- UIElementIsland.cs
- BamlReader.cs
- Decoder.cs
- XPathConvert.cs
- ExpressionLexer.cs
- DataGridTextBox.cs
- XmlSchemaAttributeGroup.cs
- WebPartMenuStyle.cs
- contentDescriptor.cs
- HwndAppCommandInputProvider.cs
- TypedMessageConverter.cs
- ActivityExecutionFilter.cs
- HttpCacheVary.cs
- X509ChainPolicy.cs
- ArithmeticException.cs
- MethodBuilder.cs
- TreeNodeSelectionProcessor.cs
- Transform3D.cs
- MissingFieldException.cs
- ApplicationCommands.cs
- RuntimeIdentifierPropertyAttribute.cs
- HandoffBehavior.cs
- MarkupExtensionParser.cs
- HttpRuntimeSection.cs
- ReferencedCollectionType.cs
- Wizard.cs
- CellLabel.cs
- OleDbError.cs
- HostProtectionException.cs
- SerTrace.cs
- HttpRequest.cs
- HandlerBase.cs
- TrustLevelCollection.cs
- DataKeyCollection.cs
- SamlDoNotCacheCondition.cs
- LineSegment.cs
- ReadOnlyCollection.cs
- Label.cs
- DefaultPrintController.cs