Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NotifyParentPropertyAttribute.cs
- Scheduler.cs
- WebConvert.cs
- IPPacketInformation.cs
- TypeExtension.cs
- remotingproxy.cs
- TerminateDesigner.cs
- TranslateTransform.cs
- LiteralControl.cs
- StringDictionary.cs
- EndEvent.cs
- PKCS1MaskGenerationMethod.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- SpStreamWrapper.cs
- ComponentFactoryHelpers.cs
- RootDesignerSerializerAttribute.cs
- ConfigDefinitionUpdates.cs
- Brush.cs
- Signature.cs
- Transform.cs
- Error.cs
- IArgumentProvider.cs
- typedescriptorpermission.cs
- InputScopeConverter.cs
- MbpInfo.cs
- XmlSchemaAppInfo.cs
- CdpEqualityComparer.cs
- ISAPIWorkerRequest.cs
- serverconfig.cs
- SchemaImporterExtensionElementCollection.cs
- DesignerRegion.cs
- SerializableReadOnlyDictionary.cs
- webeventbuffer.cs
- EncoderParameter.cs
- UnmanagedMemoryStreamWrapper.cs
- PrivilegeNotHeldException.cs
- SubMenuStyleCollection.cs
- DataKeyArray.cs
- ObjectItemAttributeAssemblyLoader.cs
- HtmlInputFile.cs
- IndentedTextWriter.cs
- ResourceProperty.cs
- FullTextState.cs
- Section.cs
- InvalidOperationException.cs
- SuppressIldasmAttribute.cs
- CatalogPartChrome.cs
- KoreanCalendar.cs
- SiteMapPath.cs
- TextAutomationPeer.cs
- FullTextLine.cs
- WSDualHttpBindingElement.cs
- HtmlInputButton.cs
- DashStyles.cs
- PolicyImporterElement.cs
- SqlCacheDependencyDatabaseCollection.cs
- Model3DGroup.cs
- DefaultCommandConverter.cs
- EmptyTextWriter.cs
- TraceListeners.cs
- SafeSecurityHelper.cs
- DoubleAnimation.cs
- LineBreak.cs
- StrokeSerializer.cs
- TimeIntervalCollection.cs
- Vector3DAnimationBase.cs
- LockRecursionException.cs
- SafeWaitHandle.cs
- CompareInfo.cs
- Win32KeyboardDevice.cs
- KeyGestureValueSerializer.cs
- DeclarativeCatalogPart.cs
- WebBrowserHelper.cs
- COAUTHINFO.cs
- _ProxyChain.cs
- COM2ExtendedTypeConverter.cs
- DiffuseMaterial.cs
- ContentDisposition.cs
- _DisconnectOverlappedAsyncResult.cs
- LinkArea.cs
- DecoderBestFitFallback.cs
- DecoderFallback.cs
- HtmlInputRadioButton.cs
- FormClosingEvent.cs
- loginstatus.cs
- base64Transforms.cs
- TemplatedWizardStep.cs
- DocumentPageHost.cs
- RTTypeWrapper.cs
- NegotiateStream.cs
- StickyNoteHelper.cs
- WindowsRebar.cs
- CookieHandler.cs
- CallbackDebugBehavior.cs
- DSACryptoServiceProvider.cs
- WithParamAction.cs
- ipaddressinformationcollection.cs
- FixedSOMLineRanges.cs
- DataObjectEventArgs.cs
- KeyValueConfigurationCollection.cs