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
- CodeRegionDirective.cs
- ContainerParagraph.cs
- DbExpressionRules.cs
- HashMembershipCondition.cs
- RelativeSource.cs
- figurelengthconverter.cs
- DataControlButton.cs
- OrderingExpression.cs
- EndpointIdentityConverter.cs
- XPathNavigatorReader.cs
- TemplateBuilder.cs
- ArgumentOutOfRangeException.cs
- XmlSchemaSequence.cs
- SQLBinary.cs
- DataGridViewCellStateChangedEventArgs.cs
- QueryCacheEntry.cs
- DoubleCollectionValueSerializer.cs
- ExtensionQuery.cs
- ObjectListCommandCollection.cs
- StreamReader.cs
- DeferredSelectedIndexReference.cs
- ComponentDispatcherThread.cs
- DockPattern.cs
- AnnotationDocumentPaginator.cs
- InstanceKeyCompleteException.cs
- SymLanguageVendor.cs
- UndoManager.cs
- MaterialCollection.cs
- GenericXmlSecurityToken.cs
- SelectionEditingBehavior.cs
- SettingsPropertyIsReadOnlyException.cs
- PerspectiveCamera.cs
- ConfigurationHandlersInstallComponent.cs
- Pair.cs
- ListBoxItem.cs
- CFGGrammar.cs
- DataGridBoundColumn.cs
- KeyedCollection.cs
- ClrProviderManifest.cs
- DataMemberListEditor.cs
- AutomationPatternInfo.cs
- DataPager.cs
- UnsafeNativeMethods.cs
- EditorZone.cs
- RoleService.cs
- TerminateDesigner.cs
- DnsElement.cs
- Int16KeyFrameCollection.cs
- ISFClipboardData.cs
- DocumentSequenceHighlightLayer.cs
- updateconfighost.cs
- CompoundFileStreamReference.cs
- LinqDataSourceView.cs
- Viewport3DAutomationPeer.cs
- TextProviderWrapper.cs
- DaylightTime.cs
- DataRowChangeEvent.cs
- MatrixIndependentAnimationStorage.cs
- HttpHandlerAction.cs
- pingexception.cs
- TableCellAutomationPeer.cs
- mactripleDES.cs
- SHA1Managed.cs
- HtmlUtf8RawTextWriter.cs
- MULTI_QI.cs
- IntAverageAggregationOperator.cs
- XPathArrayIterator.cs
- DecoderNLS.cs
- httpstaticobjectscollection.cs
- LoadMessageLogger.cs
- querybuilder.cs
- ScriptModule.cs
- MultipleViewProviderWrapper.cs
- ReflectionTypeLoadException.cs
- MergePropertyDescriptor.cs
- EventDrivenDesigner.cs
- GetWinFXPath.cs
- DataRowView.cs
- LinkLabelLinkClickedEvent.cs
- MULTI_QI.cs
- CustomErrorsSection.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- ApplicationSettingsBase.cs
- NaturalLanguageHyphenator.cs
- TextComposition.cs
- RecordsAffectedEventArgs.cs
- SplashScreenNativeMethods.cs
- AffineTransform3D.cs
- ReadOnlyDictionary.cs
- ToolStripMenuItem.cs
- DocumentPageTextView.cs
- EntityDataSourceWrapper.cs
- CodeTypeMember.cs
- AxHost.cs
- BindMarkupExtensionSerializer.cs
- Queue.cs
- ExpressionVisitor.cs
- ParameterRetriever.cs
- MsmqHostedTransportConfiguration.cs
- HebrewNumber.cs