Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- MethodBody.cs
- SiteMapProvider.cs
- SyndicationLink.cs
- WebPartHelpVerb.cs
- WebPartTracker.cs
- GrammarBuilderBase.cs
- PointAnimationUsingKeyFrames.cs
- XmlExpressionDumper.cs
- CleanUpVirtualizedItemEventArgs.cs
- EncodingTable.cs
- DiscoveryServerProtocol.cs
- Bits.cs
- CustomTrackingQuery.cs
- SafeEventLogWriteHandle.cs
- NodeCounter.cs
- PolicyException.cs
- TextBreakpoint.cs
- OleDbEnumerator.cs
- AuthenticationService.cs
- ChameleonKey.cs
- ColorAnimation.cs
- SSmlParser.cs
- ProvidePropertyAttribute.cs
- SqlFacetAttribute.cs
- MessageDescriptionCollection.cs
- ICollection.cs
- VersionConverter.cs
- NestPullup.cs
- UntrustedRecipientException.cs
- GridViewRowEventArgs.cs
- SettingsPropertyWrongTypeException.cs
- DataServiceHost.cs
- GridViewColumn.cs
- Clipboard.cs
- PtsHost.cs
- TextWriterTraceListener.cs
- ActivityContext.cs
- KnownIds.cs
- FixedSOMImage.cs
- MaxMessageSizeStream.cs
- SqlParameterCollection.cs
- SecurityUtils.cs
- ObjectKeyFrameCollection.cs
- OletxDependentTransaction.cs
- PolygonHotSpot.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- Attributes.cs
- Floater.cs
- userdatakeys.cs
- SqlWebEventProvider.cs
- SerializationEventsCache.cs
- DataGridViewBand.cs
- TimeStampChecker.cs
- TemplateNameScope.cs
- DynamicControlParameter.cs
- BufferedOutputStream.cs
- EntitySqlQueryBuilder.cs
- WaitForChangedResult.cs
- DtdParser.cs
- TypeUnloadedException.cs
- TileBrush.cs
- Crc32.cs
- DataColumnPropertyDescriptor.cs
- HtmlTableRowCollection.cs
- RenamedEventArgs.cs
- DataColumnSelectionConverter.cs
- Lazy.cs
- HttpApplication.cs
- BaseDataList.cs
- Wildcard.cs
- ResourceContainer.cs
- XmlSchemaSimpleTypeList.cs
- ReadOnlyObservableCollection.cs
- ToolBarButton.cs
- SqlStatistics.cs
- HWStack.cs
- EdmSchemaAttribute.cs
- WebBaseEventKeyComparer.cs
- Signature.cs
- IteratorDescriptor.cs
- InkCanvasFeedbackAdorner.cs
- SQLBytesStorage.cs
- DebugControllerThread.cs
- Page.cs
- XmlCustomFormatter.cs
- TextComposition.cs
- externdll.cs
- SmtpAuthenticationManager.cs
- SharedPersonalizationStateInfo.cs
- SoapFormatter.cs
- DateTimeValueSerializerContext.cs
- ProfileGroupSettings.cs
- SqlNotificationRequest.cs
- ObjectDataSourceSelectingEventArgs.cs
- TransformConverter.cs
- EditingMode.cs
- DataColumnMapping.cs
- ResourcePart.cs
- MasterPageBuildProvider.cs
- IPAddressCollection.cs