Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellStyleConverter.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StyleCollection.cs
- Msmq.cs
- RadioButton.cs
- NetDataContractSerializer.cs
- ElementsClipboardData.cs
- WorkflowInstance.cs
- DelegateTypeInfo.cs
- WindowProviderWrapper.cs
- WizardPanel.cs
- UnsafeNativeMethods.cs
- XmlSchemaIdentityConstraint.cs
- DateTimeFormatInfo.cs
- CompModSwitches.cs
- XmlSecureResolver.cs
- ColorTypeConverter.cs
- SqlInternalConnectionTds.cs
- OnOperation.cs
- UnaryExpression.cs
- Interop.cs
- StylusButton.cs
- ConcurrentStack.cs
- TargetPerspective.cs
- RoleService.cs
- SqlDataSourceStatusEventArgs.cs
- HandleCollector.cs
- Delegate.cs
- BaseTemplateCodeDomTreeGenerator.cs
- SQLByteStorage.cs
- DataGridViewCellStyleBuilderDialog.cs
- ObjectManager.cs
- TextEditorLists.cs
- XmlTextEncoder.cs
- ComponentCache.cs
- PagedControl.cs
- SequenceFullException.cs
- SchemaType.cs
- ClosureBinding.cs
- SqlCommandSet.cs
- InvariantComparer.cs
- mda.cs
- XmlSerializationReader.cs
- FormatConvertedBitmap.cs
- BitmapEffectInput.cs
- MaterialGroup.cs
- DataObjectCopyingEventArgs.cs
- NCryptSafeHandles.cs
- DataObjectMethodAttribute.cs
- QuaternionIndependentAnimationStorage.cs
- WindowsPen.cs
- Transform3D.cs
- ListViewEditEventArgs.cs
- UInt16Storage.cs
- TextTabProperties.cs
- AxDesigner.cs
- TypeNameParser.cs
- PropertyMetadata.cs
- DataGridRowHeader.cs
- SqlProfileProvider.cs
- StringCollection.cs
- CodeTypeMember.cs
- HashMembershipCondition.cs
- ListViewCommandEventArgs.cs
- CommandConverter.cs
- ObjectManager.cs
- IISUnsafeMethods.cs
- SrgsSubset.cs
- XmlEntity.cs
- StartUpEventArgs.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- DataListItemEventArgs.cs
- HtmlHead.cs
- DocumentViewerBase.cs
- WebReferenceOptions.cs
- Stopwatch.cs
- ExtendedProtectionPolicy.cs
- ISO2022Encoding.cs
- SqlDataSourceCache.cs
- EntityDescriptor.cs
- Instrumentation.cs
- StylusPointDescription.cs
- GlyphRunDrawing.cs
- DataErrorValidationRule.cs
- ToolStripTemplateNode.cs
- Identifier.cs
- TraceHandlerErrorFormatter.cs
- SystemUdpStatistics.cs
- CompiledIdentityConstraint.cs
- QuaternionRotation3D.cs
- ADConnectionHelper.cs
- Simplifier.cs
- Tile.cs
- CurrentChangedEventManager.cs
- StateRuntime.cs
- MessageEncoder.cs
- WebPart.cs
- PropertyIDSet.cs
- ResourcesChangeInfo.cs
- RelationshipConstraintValidator.cs
- DataList.cs
- UIElement3DAutomationPeer.cs