Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- OdbcConnectionOpen.cs
- userdatakeys.cs
- AppDomainManager.cs
- SettingsSection.cs
- Panel.cs
- InstanceStoreQueryResult.cs
- SeparatorAutomationPeer.cs
- WebConfigurationHost.cs
- DocumentAutomationPeer.cs
- DataExpression.cs
- Graphics.cs
- SurrogateEncoder.cs
- versioninfo.cs
- BuildProvidersCompiler.cs
- CodeThrowExceptionStatement.cs
- DeclaredTypeElementCollection.cs
- NetStream.cs
- TypeUtil.cs
- RegularExpressionValidator.cs
- ClientConfigurationSystem.cs
- ExpandCollapsePattern.cs
- ToolStripDropDownMenu.cs
- HttpEncoderUtility.cs
- ConnectionPoolRegistry.cs
- COSERVERINFO.cs
- SafeFileHandle.cs
- ReservationNotFoundException.cs
- MeasureData.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- PermissionAttributes.cs
- RTLAwareMessageBox.cs
- RegexStringValidatorAttribute.cs
- EntityDataSourceDataSelectionPanel.designer.cs
- CodeTypeReferenceSerializer.cs
- XpsS0ValidatingLoader.cs
- ToolStripDropDownItem.cs
- XmlDocumentType.cs
- FixedTextSelectionProcessor.cs
- Int32CollectionValueSerializer.cs
- BamlTreeMap.cs
- StyleXamlParser.cs
- ToolStripPanelDesigner.cs
- UpdateCommandGenerator.cs
- TypeSystem.cs
- ConfigurationSection.cs
- CodeNamespaceImport.cs
- HttpHandlersSection.cs
- CqlLexer.cs
- TreeViewBindingsEditorForm.cs
- DeclaredTypeElement.cs
- ExpressionEditorAttribute.cs
- OrthographicCamera.cs
- MultiTrigger.cs
- HttpInputStream.cs
- TriggerCollection.cs
- LinkLabel.cs
- ConfigurationSectionGroupCollection.cs
- PrintDialogException.cs
- MessageBox.cs
- DataSourceHelper.cs
- HttpPostedFile.cs
- SrgsElementFactoryCompiler.cs
- objectresult_tresulttype.cs
- sitestring.cs
- Tile.cs
- SimpleWebHandlerParser.cs
- RenderTargetBitmap.cs
- BitmapScalingModeValidation.cs
- ExtentKey.cs
- ExclusiveCanonicalizationTransform.cs
- TimeZoneInfo.cs
- HtmlDocument.cs
- Path.cs
- NullableLongMinMaxAggregationOperator.cs
- ProxyFragment.cs
- DesignerActionService.cs
- DivideByZeroException.cs
- PagesSection.cs
- ListViewGroupItemCollection.cs
- ConsoleCancelEventArgs.cs
- SuppressIldasmAttribute.cs
- TextShapeableCharacters.cs
- ScriptControlManager.cs
- OrderedHashRepartitionEnumerator.cs
- _UriTypeConverter.cs
- TreeView.cs
- WindowsStatusBar.cs
- TextBlock.cs
- ThreadStaticAttribute.cs
- WebServiceHandlerFactory.cs
- MessageLogger.cs
- COM2IDispatchConverter.cs
- FileDetails.cs
- AspCompat.cs
- AtomMaterializerLog.cs
- ReferentialConstraint.cs
- Symbol.cs
- CommandBinding.cs
- Math.cs
- DataDocumentXPathNavigator.cs