Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellConverter.cs / 1 / DataGridViewCellConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Windows.Forms; using System.Globalization; using System.ComponentModel; using System.Reflection; using System.Runtime.Serialization.Formatters; using System.ComponentModel.Design.Serialization; // used by the designer to serialize the DataGridViewCell class internal class DataGridViewCellConverter : ExpandableObjectConverter { public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } DataGridViewCell cell = value as DataGridViewCell; if (destinationType == typeof(InstanceDescriptor) && cell != null) { ConstructorInfo ctor = cell.GetType().GetConstructor(new Type[0]); if (ctor != null) { return new InstanceDescriptor(ctor, new object[0], false); } } return base.ConvertTo(context, culture, value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Windows.Forms; using System.Globalization; using System.ComponentModel; using System.Reflection; using System.Runtime.Serialization.Formatters; using System.ComponentModel.Design.Serialization; // used by the designer to serialize the DataGridViewCell class internal class DataGridViewCellConverter : ExpandableObjectConverter { public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } DataGridViewCell cell = value as DataGridViewCell; if (destinationType == typeof(InstanceDescriptor) && cell != null) { ConstructorInfo ctor = cell.GetType().GetConstructor(new Type[0]); if (ctor != null) { return new InstanceDescriptor(ctor, new object[0], false); } } return base.ConvertTo(context, culture, value, destinationType); } } } // 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
- ConstraintConverter.cs
- WebSysDisplayNameAttribute.cs
- GridSplitterAutomationPeer.cs
- sqlnorm.cs
- HwndSubclass.cs
- IPEndPoint.cs
- ViewStateException.cs
- ServiceCredentialsElement.cs
- ButtonBaseAutomationPeer.cs
- PeerResolverBindingElement.cs
- SymLanguageVendor.cs
- IsolatedStorageFilePermission.cs
- Rotation3DAnimation.cs
- JapaneseCalendar.cs
- TraceListeners.cs
- GPPOINT.cs
- SchemaElementDecl.cs
- AnimationException.cs
- DynamicDataRoute.cs
- FixedSOMTableRow.cs
- Int32Rect.cs
- FlowDocumentView.cs
- DataGridParentRows.cs
- DocumentPageHost.cs
- CompModSwitches.cs
- IUnknownConstantAttribute.cs
- ShowExpandedMultiValueConverter.cs
- PropertyCollection.cs
- EventNotify.cs
- AutomationProperty.cs
- DataGridViewHeaderCell.cs
- PixelFormatConverter.cs
- DataFormat.cs
- PenLineJoinValidation.cs
- EntityDescriptor.cs
- PartitionedDataSource.cs
- ToolBar.cs
- DateRangeEvent.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- securestring.cs
- StandardToolWindows.cs
- ChannelListenerBase.cs
- ActivityDesigner.cs
- BinaryQueryOperator.cs
- SqlBuilder.cs
- SerializerProvider.cs
- IntSecurity.cs
- DataGridViewColumnEventArgs.cs
- BindingSource.cs
- ControlTemplate.cs
- AstTree.cs
- PropertyGridEditorPart.cs
- ObjectDataSourceEventArgs.cs
- DbProviderConfigurationHandler.cs
- SpeakInfo.cs
- SerialErrors.cs
- ScriptIgnoreAttribute.cs
- dataprotectionpermission.cs
- ComplexPropertyEntry.cs
- WebCodeGenerator.cs
- TemplateComponentConnector.cs
- PersistChildrenAttribute.cs
- NameNode.cs
- EncryptedKey.cs
- odbcmetadatacollectionnames.cs
- MessageSmuggler.cs
- DisableDpiAwarenessAttribute.cs
- validationstate.cs
- UrlEncodedParameterWriter.cs
- ListViewEditEventArgs.cs
- UrlAuthFailureHandler.cs
- _HelperAsyncResults.cs
- DiscoveryService.cs
- TableColumn.cs
- PropertyTab.cs
- HtmlAnchor.cs
- SoapSchemaMember.cs
- TextDecoration.cs
- VisemeEventArgs.cs
- Margins.cs
- SocketInformation.cs
- SchemaObjectWriter.cs
- WebConfigurationHostFileChange.cs
- ServiceContractListItemList.cs
- XmlSchemaExternal.cs
- _FtpControlStream.cs
- WebPartDisplayModeCollection.cs
- SqlCaseSimplifier.cs
- SimpleWebHandlerParser.cs
- RangeBaseAutomationPeer.cs
- SerializationObjectManager.cs
- PerfCounters.cs
- tooltip.cs
- AppSettingsExpressionBuilder.cs
- FromReply.cs
- PointCollectionValueSerializer.cs
- ViewStateModeByIdAttribute.cs
- EndpointDispatcher.cs
- BamlLocalizableResourceKey.cs
- NativeRightsManagementAPIsStructures.cs