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
- LogicalTreeHelper.cs
- PrePrepareMethodAttribute.cs
- SharedPersonalizationStateInfo.cs
- SqlInternalConnectionTds.cs
- OutputCacheSection.cs
- MergablePropertyAttribute.cs
- FixedPageStructure.cs
- ColorBlend.cs
- XmlDictionaryReaderQuotas.cs
- Point3DKeyFrameCollection.cs
- StylusPointPropertyInfo.cs
- ClientUIRequest.cs
- ReadOnlyAttribute.cs
- ProxyFragment.cs
- MetadataUtilsSmi.cs
- Freezable.cs
- TimeIntervalCollection.cs
- SecurityElement.cs
- GlyphingCache.cs
- DataObjectPastingEventArgs.cs
- CompensatableTransactionScopeActivity.cs
- ColorAnimation.cs
- DataGridAddNewRow.cs
- RegexRunnerFactory.cs
- PolyBezierSegment.cs
- MetadataUtilsSmi.cs
- GlyphManager.cs
- ProfileGroupSettingsCollection.cs
- Pen.cs
- WebPartMenu.cs
- EpmContentSerializer.cs
- ConfigXmlDocument.cs
- LocalizableAttribute.cs
- ReflectTypeDescriptionProvider.cs
- WorkflowQueueInfo.cs
- ProcessModuleCollection.cs
- SapiGrammar.cs
- SchemaNotation.cs
- GuidelineSet.cs
- base64Transforms.cs
- MdiWindowListItemConverter.cs
- WindowsGraphics.cs
- ObjectPersistData.cs
- XsdBuildProvider.cs
- FlowStep.cs
- GatewayIPAddressInformationCollection.cs
- ConditionalBranch.cs
- DbConnectionHelper.cs
- XmlValueConverter.cs
- AttributeUsageAttribute.cs
- Accessible.cs
- COMException.cs
- BlobPersonalizationState.cs
- XmlSchemaSimpleTypeUnion.cs
- FacetChecker.cs
- PasswordRecovery.cs
- Dispatcher.cs
- ServiceChannelManager.cs
- RealProxy.cs
- WebPartDisplayModeCollection.cs
- InstanceDataCollection.cs
- WorkflowServiceAttributes.cs
- UrlUtility.cs
- CodeIterationStatement.cs
- CodeCompileUnit.cs
- NotFiniteNumberException.cs
- ConfigurationStrings.cs
- CachedPathData.cs
- CellTreeNodeVisitors.cs
- DesignerAdapterUtil.cs
- ServiceReference.cs
- TextRange.cs
- PageFunction.cs
- ActivityPropertyReference.cs
- ViewManager.cs
- TimeSpanValidator.cs
- BufferBuilder.cs
- DescendantOverDescendantQuery.cs
- UpdatableGenericsFeature.cs
- TimerElapsedEvenArgs.cs
- MediaSystem.cs
- SslStream.cs
- ClickablePoint.cs
- Popup.cs
- WebPartVerbsEventArgs.cs
- UrlPath.cs
- ExpressionConverter.cs
- NameScopePropertyAttribute.cs
- SystemWebCachingSectionGroup.cs
- PrintPreviewControl.cs
- HtmlInputText.cs
- DragEvent.cs
- UrlMappingsSection.cs
- ContentElement.cs
- SplitContainer.cs
- InvokeSchedule.cs
- WebPartEditorOkVerb.cs
- ReadOnlyState.cs
- IndexedEnumerable.cs
- ModelFunction.cs