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 / DataGridViewCellStyleConverter.cs / 1 / DataGridViewCellStyleConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; ////// /// public class DataGridViewCellStyleConverter : TypeConverter { ////// /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ///Gets a value indicating whether this converter can /// convert an object to the given destination type using the context. ////// /// Converts the given object to another type. The most common types to convert /// are to and from a string object. The default implementation will make a call /// to ToString on the object if the object is valid and if the destination /// type is string. If this cannot convert to the desitnation type, this will /// throw a NotSupportedException. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(InstanceDescriptor) && value is DataGridViewCellStyle) { ConstructorInfo ctor = value.GetType().GetConstructor(new Type[0]); 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. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; ////// /// public class DataGridViewCellStyleConverter : TypeConverter { ////// /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ///Gets a value indicating whether this converter can /// convert an object to the given destination type using the context. ////// /// Converts the given object to another type. The most common types to convert /// are to and from a string object. The default implementation will make a call /// to ToString on the object if the object is valid and if the destination /// type is string. If this cannot convert to the desitnation type, this will /// throw a NotSupportedException. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(InstanceDescriptor) && value is DataGridViewCellStyle) { ConstructorInfo ctor = value.GetType().GetConstructor(new Type[0]); 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FontClient.cs
- DataGridViewRowConverter.cs
- WebPartDisplayModeCollection.cs
- HtmlUtf8RawTextWriter.cs
- Char.cs
- ConnectorSelectionGlyph.cs
- Page.cs
- TraceContextEventArgs.cs
- GroupBox.cs
- ISO2022Encoding.cs
- Authorization.cs
- PageThemeCodeDomTreeGenerator.cs
- NavigationProperty.cs
- DBParameter.cs
- GridViewCellAutomationPeer.cs
- DynamicValidatorEventArgs.cs
- SoapAttributeAttribute.cs
- TreeView.cs
- GenericUI.cs
- RoleManagerModule.cs
- EvidenceBase.cs
- TPLETWProvider.cs
- ErrorFormatterPage.cs
- PathSegment.cs
- TreeViewEvent.cs
- ReachFixedDocumentSerializer.cs
- FormsAuthenticationConfiguration.cs
- PagesSection.cs
- BitArray.cs
- SegmentInfo.cs
- RoutedEventArgs.cs
- Logging.cs
- Timer.cs
- SqlAliasesReferenced.cs
- odbcmetadatafactory.cs
- StylusPointPropertyInfo.cs
- HttpContextServiceHost.cs
- NavigationWindowAutomationPeer.cs
- UpdatePanelControlTrigger.cs
- CodeLabeledStatement.cs
- DetailsViewPagerRow.cs
- ListMarkerSourceInfo.cs
- RuntimeHelpers.cs
- PropagatorResult.cs
- _CommandStream.cs
- ResourcePermissionBase.cs
- DateTime.cs
- StatusBarDesigner.cs
- Margins.cs
- ReturnType.cs
- SHA1.cs
- GridViewSortEventArgs.cs
- Style.cs
- CodeTypeParameterCollection.cs
- SystemIPInterfaceProperties.cs
- JoinSymbol.cs
- AttachedPropertyBrowsableAttribute.cs
- RegistrationServices.cs
- IApplicationTrustManager.cs
- PageBuildProvider.cs
- XmlChildEnumerator.cs
- ContractUtils.cs
- CodeTypeReferenceExpression.cs
- ContextMenuService.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- ReachSerializer.cs
- BufferedWebEventProvider.cs
- PasswordRecovery.cs
- GridEntry.cs
- CopyNamespacesAction.cs
- IsolatedStorageException.cs
- Int32RectValueSerializer.cs
- ipaddressinformationcollection.cs
- SmtpCommands.cs
- sqlnorm.cs
- CodeVariableDeclarationStatement.cs
- ListCardsInFileRequest.cs
- InheritanceContextChangedEventManager.cs
- ToolboxBitmapAttribute.cs
- TextHidden.cs
- SynchronousChannelMergeEnumerator.cs
- DescendentsWalker.cs
- WebPartDeleteVerb.cs
- TransactionException.cs
- ProfileService.cs
- ContextMenuAutomationPeer.cs
- ResourceContainer.cs
- BaseParagraph.cs
- InputProcessorProfiles.cs
- TextTreeInsertElementUndoUnit.cs
- TimeSpanConverter.cs
- BamlLocalizableResource.cs
- ApplicationDirectoryMembershipCondition.cs
- DesignerSerializationOptionsAttribute.cs
- SubstitutionList.cs
- FixedDocumentSequencePaginator.cs
- Dynamic.cs
- PrincipalPermission.cs
- Vector3DAnimationUsingKeyFrames.cs
- Domain.cs