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
- MailSettingsSection.cs
- XmlNavigatorStack.cs
- RepeaterItemEventArgs.cs
- ZipIOExtraFieldElement.cs
- SegmentInfo.cs
- SqlProfileProvider.cs
- Touch.cs
- DiscoveryMessageSequenceGenerator.cs
- SecurityKeyIdentifierClause.cs
- PrtTicket_Base.cs
- OutputCacheProfileCollection.cs
- TypeInitializationException.cs
- XmlSchemaSubstitutionGroup.cs
- HostedElements.cs
- SR.cs
- EventProvider.cs
- CodeTypeMember.cs
- Block.cs
- MonitoringDescriptionAttribute.cs
- MtomMessageEncodingBindingElement.cs
- SmiMetaData.cs
- LocationInfo.cs
- LinearGradientBrush.cs
- SkewTransform.cs
- PropertiesTab.cs
- SqlMethodCallConverter.cs
- XamlVector3DCollectionSerializer.cs
- MailWriter.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ImplicitInputBrush.cs
- WorkerRequest.cs
- EmptyQuery.cs
- SerializationHelper.cs
- RectIndependentAnimationStorage.cs
- HttpContextServiceHost.cs
- InheritanceContextChangedEventManager.cs
- ScriptingAuthenticationServiceSection.cs
- BamlReader.cs
- Random.cs
- DtrList.cs
- HelpKeywordAttribute.cs
- ValidationEventArgs.cs
- NumericUpDown.cs
- XpsFont.cs
- SQLByteStorage.cs
- StubHelpers.cs
- CharEntityEncoderFallback.cs
- HtmlControl.cs
- Image.cs
- AttributeExtensions.cs
- TcpHostedTransportConfiguration.cs
- SafeLibraryHandle.cs
- GraphicsContext.cs
- ClientType.cs
- Registration.cs
- ExtentKey.cs
- OleDbStruct.cs
- InputBuffer.cs
- StatusBarItem.cs
- ProfileService.cs
- DocumentGrid.cs
- TypeForwardedFromAttribute.cs
- PagerSettings.cs
- BasicBrowserDialog.designer.cs
- StylusPointDescription.cs
- CreateParams.cs
- SelectionManager.cs
- DataGridItemCollection.cs
- DirectionalLight.cs
- BuildProviderCollection.cs
- SystemSounds.cs
- ReverseQueryOperator.cs
- ReferenceConverter.cs
- _ConnectOverlappedAsyncResult.cs
- XmlWriter.cs
- RefreshEventArgs.cs
- DecimalMinMaxAggregationOperator.cs
- StylusDownEventArgs.cs
- WindowsHyperlink.cs
- PolyBezierSegment.cs
- FolderBrowserDialogDesigner.cs
- SEHException.cs
- StrokeNodeData.cs
- IncomingWebResponseContext.cs
- CompilerResults.cs
- DataSourceHelper.cs
- FontFamilyConverter.cs
- UnauthorizedAccessException.cs
- XmlSchemaNotation.cs
- ResourceDictionaryCollection.cs
- __Error.cs
- DataSetMappper.cs
- DataControlFieldHeaderCell.cs
- SingleBodyParameterMessageFormatter.cs
- DataListCommandEventArgs.cs
- VSWCFServiceContractGenerator.cs
- AuthorizationRuleCollection.cs
- SafeMemoryMappedFileHandle.cs
- FactoryGenerator.cs
- HealthMonitoringSectionHelper.cs