Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // //----------------------------------------------------------------------------- /* */ 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
- relpropertyhelper.cs
- EncoderReplacementFallback.cs
- BehaviorDragDropEventArgs.cs
- ParagraphResult.cs
- Point3D.cs
- ExceptionUtil.cs
- Wrapper.cs
- CapabilitiesUse.cs
- AnonymousIdentificationSection.cs
- CrossSiteScriptingValidation.cs
- CompletionBookmark.cs
- TreeNodeCollection.cs
- SurrogateEncoder.cs
- XmlCompatibilityReader.cs
- BamlLocalizableResource.cs
- SQLDoubleStorage.cs
- TextServicesHost.cs
- ViewSimplifier.cs
- Int32RectConverter.cs
- IconBitmapDecoder.cs
- ReachObjectContext.cs
- WebPartConnection.cs
- LexicalChunk.cs
- RootDesignerSerializerAttribute.cs
- ProxyElement.cs
- Int16Storage.cs
- EnumValAlphaComparer.cs
- XmlParserContext.cs
- KnownIds.cs
- SafeArrayTypeMismatchException.cs
- WebResponse.cs
- DocumentScope.cs
- GridViewRow.cs
- DbConnectionClosed.cs
- ArrayConverter.cs
- TextTreeRootTextBlock.cs
- AssociationSet.cs
- BinaryKeyIdentifierClause.cs
- Application.cs
- PropertyChangeTracker.cs
- SoapFault.cs
- OutputCacheProfileCollection.cs
- DataListCommandEventArgs.cs
- ForeignKeyConstraint.cs
- XmlSchemaFacet.cs
- XmlReflectionImporter.cs
- PeerObject.cs
- CellParagraph.cs
- documentation.cs
- Roles.cs
- codemethodreferenceexpression.cs
- NavigatingCancelEventArgs.cs
- FunctionImportElement.cs
- UnauthorizedWebPart.cs
- ReflectionUtil.cs
- DataServiceExpressionVisitor.cs
- GridSplitterAutomationPeer.cs
- StreamSecurityUpgradeAcceptorAsyncResult.cs
- CatalogPart.cs
- XamlHostingSection.cs
- EnumMember.cs
- FixedStringLookup.cs
- PropertyFilter.cs
- WorkflowMarkupElementEventArgs.cs
- X509Certificate.cs
- JsonByteArrayDataContract.cs
- ApplyTemplatesAction.cs
- Int32Collection.cs
- CodeSnippetExpression.cs
- ProvidePropertyAttribute.cs
- Membership.cs
- DataServiceQueryProvider.cs
- RadioButton.cs
- ArrangedElement.cs
- FieldAccessException.cs
- RawUIStateInputReport.cs
- WeakReferenceKey.cs
- StrongNameUtility.cs
- BasicCommandTreeVisitor.cs
- FlowDocumentPaginator.cs
- SqlDataSource.cs
- Stack.cs
- ToolStripSystemRenderer.cs
- CompressedStack.cs
- TextLineBreak.cs
- GridViewColumnHeaderAutomationPeer.cs
- DependencyObjectProvider.cs
- TreeNode.cs
- XmlCharCheckingWriter.cs
- SecurityElement.cs
- LoginCancelEventArgs.cs
- StrongBox.cs
- SqlDataSourceConfigureSortForm.cs
- HttpChannelBindingToken.cs
- SendingRequestEventArgs.cs
- FixedSOMElement.cs
- TreeWalker.cs
- ObjectDataSourceChooseMethodsPanel.cs
- DataSvcMapFileSerializer.cs
- ImagingCache.cs