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
- CodeVariableDeclarationStatement.cs
- ToolStripSplitStackLayout.cs
- DynamicPropertyHolder.cs
- ClientRoleProvider.cs
- PartialClassGenerationTaskInternal.cs
- SqlError.cs
- SignatureToken.cs
- TableRow.cs
- UserPreferenceChangedEventArgs.cs
- COSERVERINFO.cs
- ProcessModuleDesigner.cs
- TypeReference.cs
- TcpAppDomainProtocolHandler.cs
- SchemaSetCompiler.cs
- DecoderReplacementFallback.cs
- PasswordTextContainer.cs
- Int32AnimationBase.cs
- HtmlElementEventArgs.cs
- SafeUserTokenHandle.cs
- InvalidOperationException.cs
- StandardOleMarshalObject.cs
- LogRecordSequence.cs
- SignatureToken.cs
- ButtonField.cs
- IDQuery.cs
- RSAOAEPKeyExchangeFormatter.cs
- EncoderBestFitFallback.cs
- WebRequestModuleElement.cs
- DocumentOrderQuery.cs
- AddInIpcChannel.cs
- UserPreferenceChangedEventArgs.cs
- OdbcConnectionHandle.cs
- SEHException.cs
- ConsoleTraceListener.cs
- SHA384Cng.cs
- Imaging.cs
- EdmTypeAttribute.cs
- CompositionCommandSet.cs
- QilXmlReader.cs
- ObfuscationAttribute.cs
- OleDbException.cs
- SchemaImporterExtensionElementCollection.cs
- BaseCodePageEncoding.cs
- Decoder.cs
- IDReferencePropertyAttribute.cs
- DefaultHttpHandler.cs
- TextUtf8RawTextWriter.cs
- StringUtil.cs
- CompatibleIComparer.cs
- XmlSchemaSequence.cs
- RegexCode.cs
- FrameworkContentElement.cs
- FontStyles.cs
- PasswordRecovery.cs
- HtmlAnchor.cs
- BitmapEffectGeneralTransform.cs
- ItemsPresenter.cs
- _UriSyntax.cs
- AddInEnvironment.cs
- BasicKeyConstraint.cs
- CngAlgorithmGroup.cs
- Substitution.cs
- __FastResourceComparer.cs
- DesignTimeParseData.cs
- RequestCacheEntry.cs
- LicFileLicenseProvider.cs
- FontCollection.cs
- SQLBytes.cs
- StrokeIntersection.cs
- PriorityItem.cs
- UnsafeNativeMethods.cs
- WorkflowDefinitionDispenser.cs
- HighlightVisual.cs
- ChannelPool.cs
- ImageDrawing.cs
- compensatingcollection.cs
- SchemaSetCompiler.cs
- AlphabetConverter.cs
- InvalidContentTypeException.cs
- SafeCryptoHandles.cs
- CaseStatement.cs
- SafeTimerHandle.cs
- WebScriptMetadataFormatter.cs
- WebScriptServiceHost.cs
- SiteMapNodeItemEventArgs.cs
- CapabilitiesPattern.cs
- Guid.cs
- DisplayNameAttribute.cs
- cookieexception.cs
- XmlValueConverter.cs
- ItemCheckEvent.cs
- RectangleF.cs
- StylusPointPropertyId.cs
- HtmlTableCell.cs
- TemplateColumn.cs
- Viewport3DAutomationPeer.cs
- TraceEventCache.cs
- AnimatedTypeHelpers.cs
- ToolStripDropDown.cs
- EventEntry.cs