Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- Properties.cs
- CollectionViewGroupInternal.cs
- ApplicationServiceManager.cs
- TypeDescriptorFilterService.cs
- HierarchicalDataBoundControl.cs
- HGlobalSafeHandle.cs
- ResourcePermissionBaseEntry.cs
- TypefaceCollection.cs
- PersonalizationProvider.cs
- BeginStoryboard.cs
- DesignerRegionMouseEventArgs.cs
- SiteMapNodeItemEventArgs.cs
- Soap12ProtocolImporter.cs
- SymbolType.cs
- AlphaSortedEnumConverter.cs
- RemotingException.cs
- Listen.cs
- BStrWrapper.cs
- followingsibling.cs
- DocumentCollection.cs
- TriggerBase.cs
- DocumentReferenceCollection.cs
- CroppedBitmap.cs
- EditorZoneBase.cs
- SelectionProviderWrapper.cs
- ObjectListFieldsPage.cs
- ObjectManager.cs
- IPAddressCollection.cs
- SrgsDocument.cs
- QilParameter.cs
- BitmapCacheBrush.cs
- LinkLabelLinkClickedEvent.cs
- XmlDataDocument.cs
- RelationshipConstraintValidator.cs
- CollectionChangeEventArgs.cs
- XXXInfos.cs
- GenericAuthenticationEventArgs.cs
- SaveFileDialogDesigner.cs
- FamilyCollection.cs
- _LazyAsyncResult.cs
- Pointer.cs
- BindingGroup.cs
- SoapSchemaExporter.cs
- DrawListViewItemEventArgs.cs
- SchemaImporterExtension.cs
- QuadraticBezierSegment.cs
- DrawingVisualDrawingContext.cs
- WebPartZoneCollection.cs
- LayoutTableCell.cs
- XmlSchema.cs
- ServicesUtilities.cs
- CompositeCollectionView.cs
- CommonRemoteMemoryBlock.cs
- ServiceHttpModule.cs
- CommonDialog.cs
- BlockUIContainer.cs
- SeparatorAutomationPeer.cs
- ScrollChrome.cs
- XmlIncludeAttribute.cs
- VectorAnimationBase.cs
- CapabilitiesPattern.cs
- XPathAncestorIterator.cs
- MenuCommand.cs
- BevelBitmapEffect.cs
- arc.cs
- BaseValidator.cs
- PrePostDescendentsWalker.cs
- DisplayMemberTemplateSelector.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- KnownBoxes.cs
- DataGridBoolColumn.cs
- SapiRecognizer.cs
- ValueHandle.cs
- UTF7Encoding.cs
- RuntimeResourceSet.cs
- ProcessMonitor.cs
- PageStatePersister.cs
- WorkflowTimerService.cs
- ProfileService.cs
- AutomationPropertyChangedEventArgs.cs
- DuplicateWaitObjectException.cs
- PasswordDeriveBytes.cs
- RetrieveVirtualItemEventArgs.cs
- thaishape.cs
- WebPartMovingEventArgs.cs
- FilterQuery.cs
- TableHeaderCell.cs
- WebControlsSection.cs
- EntityCollection.cs
- SessionPageStatePersister.cs
- PersonalizationProviderCollection.cs
- EntityDataSourceConfigureObjectContext.cs
- Types.cs
- DateTime.cs
- TextTreeUndo.cs
- DataExpression.cs
- Membership.cs
- WindowsEditBoxRange.cs
- Stack.cs
- NativeActivityAbortContext.cs