Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Base / System / ComponentModel / IItemProperties.cs / 1 / 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
- RangeExpression.cs
- RemoteDebugger.cs
- DES.cs
- RelationalExpressions.cs
- CompatibleIComparer.cs
- WebPartTransformerCollection.cs
- ObjectAnimationBase.cs
- SQLMembershipProvider.cs
- XmlSchemaComplexContentExtension.cs
- FtpCachePolicyElement.cs
- PriorityBinding.cs
- SBCSCodePageEncoding.cs
- FileLevelControlBuilderAttribute.cs
- Padding.cs
- PasswordRecovery.cs
- GenericFlowSwitchHelper.cs
- PageTheme.cs
- ListViewInsertionMark.cs
- ProviderException.cs
- PageContentAsyncResult.cs
- TypeReference.cs
- Console.cs
- HeaderedItemsControl.cs
- HiddenField.cs
- TextRangeBase.cs
- ListViewItemSelectionChangedEvent.cs
- UnsafeNativeMethods.cs
- FileDetails.cs
- FlowDocument.cs
- FormsIdentity.cs
- DashStyle.cs
- ColorMap.cs
- dataprotectionpermission.cs
- ListParagraph.cs
- WebCategoryAttribute.cs
- CryptoStream.cs
- JsonDeserializer.cs
- GenericWebPart.cs
- DataObjectAttribute.cs
- PagesSection.cs
- DataGridViewControlCollection.cs
- FastEncoderWindow.cs
- TreeChangeInfo.cs
- DataGridViewTextBoxColumn.cs
- ParseNumbers.cs
- Function.cs
- SqlTypesSchemaImporter.cs
- InputChannelBinder.cs
- safesecurityhelperavalon.cs
- ActivityInstance.cs
- ComboBox.cs
- SqlDataSourceFilteringEventArgs.cs
- ServicePointManagerElement.cs
- SafeRegistryHandle.cs
- ToggleProviderWrapper.cs
- AppDomainManager.cs
- ClientTarget.cs
- MetaData.cs
- HGlobalSafeHandle.cs
- Overlapped.cs
- SafeRegistryKey.cs
- IsolatedStorageFileStream.cs
- HtmlShimManager.cs
- SynchronizationContext.cs
- BehaviorDragDropEventArgs.cs
- ItemAutomationPeer.cs
- TextPointerBase.cs
- ConfigXmlWhitespace.cs
- PrintPreviewControl.cs
- Stack.cs
- CollectionsUtil.cs
- FormView.cs
- ExpressionWriter.cs
- WebPartManagerInternals.cs
- StackBuilderSink.cs
- XmlNamespaceDeclarationsAttribute.cs
- ListViewUpdatedEventArgs.cs
- RootBrowserWindow.cs
- Form.cs
- DelegateSerializationHolder.cs
- TriState.cs
- ArrayConverter.cs
- TableLayoutSettings.cs
- ChangeProcessor.cs
- XmlSchemaAttributeGroupRef.cs
- BamlLocalizabilityResolver.cs
- DatasetMethodGenerator.cs
- StructuredTypeEmitter.cs
- PolyLineSegmentFigureLogic.cs
- NTAccount.cs
- ListSortDescriptionCollection.cs
- AuthStoreRoleProvider.cs
- ReachVisualSerializer.cs
- MetadataItemSerializer.cs
- SqlDataRecord.cs
- TdsValueSetter.cs
- WebSysDescriptionAttribute.cs
- DataGridViewControlCollection.cs
- LinqDataSourceDeleteEventArgs.cs
- ListViewUpdatedEventArgs.cs