Code:
/ FX-1434 / FX-1434 / 1.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
- QueueProcessor.cs
- GroupAggregateExpr.cs
- DesignerDeviceConfig.cs
- PathFigureCollection.cs
- PeerContact.cs
- OleDbRowUpdatingEvent.cs
- TextServicesCompartmentContext.cs
- MSG.cs
- SQLChars.cs
- XmlSerializerAssemblyAttribute.cs
- GradientStop.cs
- _PooledStream.cs
- XamlSerializer.cs
- ByteAnimationUsingKeyFrames.cs
- PathFigure.cs
- PrimarySelectionAdorner.cs
- Native.cs
- IndexedString.cs
- DataRelationPropertyDescriptor.cs
- CertificateElement.cs
- InheritablePropertyChangeInfo.cs
- ObjectDataSourceView.cs
- LocalizationComments.cs
- SmtpAuthenticationManager.cs
- LabelInfo.cs
- SocketPermission.cs
- ElementUtil.cs
- DataControlHelper.cs
- XDRSchema.cs
- DBConnectionString.cs
- AlignmentYValidation.cs
- Resources.Designer.cs
- StorageEntityTypeMapping.cs
- AspProxy.cs
- PerformanceCounterNameAttribute.cs
- ActivationServices.cs
- PenLineJoinValidation.cs
- SystemIPAddressInformation.cs
- HttpDateParse.cs
- CanExpandCollapseAllConverter.cs
- Empty.cs
- StylusTip.cs
- WebPartConnectVerb.cs
- SmiRecordBuffer.cs
- odbcmetadatacolumnnames.cs
- TargetFrameworkUtil.cs
- LicenseProviderAttribute.cs
- PropertyItem.cs
- Panel.cs
- GlobalProxySelection.cs
- ReceiveSecurityHeaderElementManager.cs
- MemberDescriptor.cs
- InputBindingCollection.cs
- KeyBinding.cs
- XmlComment.cs
- LeaseManager.cs
- CompatibleIComparer.cs
- CodePrimitiveExpression.cs
- SystemException.cs
- SqlClientPermission.cs
- ConfigXmlDocument.cs
- ICspAsymmetricAlgorithm.cs
- ReadWriteObjectLock.cs
- GroupBox.cs
- TransactionFilter.cs
- RuntimeEnvironment.cs
- VirtualizedItemPattern.cs
- EntityFunctions.cs
- BitStack.cs
- RawUIStateInputReport.cs
- ParallelTimeline.cs
- TimeSpanStorage.cs
- HttpResponse.cs
- ActivityExecutionContext.cs
- MailWebEventProvider.cs
- DerivedKeyCachingSecurityTokenSerializer.cs
- NameHandler.cs
- SpoolingTaskBase.cs
- InfoCard.cs
- PageAdapter.cs
- ScrollBarAutomationPeer.cs
- PartManifestEntry.cs
- ProviderBase.cs
- SchemaCollectionCompiler.cs
- ResourceDictionary.cs
- StoreAnnotationsMap.cs
- HandlerFactoryCache.cs
- FrameworkElementFactoryMarkupObject.cs
- NetworkCredential.cs
- CacheRequest.cs
- EditorPartCollection.cs
- XmlCharCheckingReader.cs
- PolicyManager.cs
- TextSelectionHighlightLayer.cs
- AnnotationService.cs
- ZoomPercentageConverter.cs
- InputLanguage.cs
- GeneralTransform.cs
- Timeline.cs
- QilExpression.cs