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
- AndCondition.cs
- SspiWrapper.cs
- SqlCaseSimplifier.cs
- ObjectContextServiceProvider.cs
- ObjectToIdCache.cs
- WebDescriptionAttribute.cs
- PropertyGridCommands.cs
- HtmlTable.cs
- ConvertersCollection.cs
- FixedBufferAttribute.cs
- ListViewSortEventArgs.cs
- WebPartConnectionsCancelEventArgs.cs
- TemplatePagerField.cs
- _SafeNetHandles.cs
- PropertyCollection.cs
- milexports.cs
- ComNativeDescriptor.cs
- MouseActionValueSerializer.cs
- SpellerError.cs
- PartitionResolver.cs
- AuthenticationService.cs
- JsonUriDataContract.cs
- ParentControlDesigner.cs
- TextProperties.cs
- QueryOperationResponseOfT.cs
- TransformedBitmap.cs
- BindingList.cs
- __TransparentProxy.cs
- IconConverter.cs
- ObfuscationAttribute.cs
- AutomationPatternInfo.cs
- ButtonChrome.cs
- CheckBox.cs
- _ListenerAsyncResult.cs
- LinqDataSourceEditData.cs
- SimpleHandlerBuildProvider.cs
- EnumerableRowCollectionExtensions.cs
- DesignerVerbCollection.cs
- XpsFilter.cs
- PlatformNotSupportedException.cs
- CodeExpressionStatement.cs
- BrushMappingModeValidation.cs
- TypeDescriptorContext.cs
- SimpleExpression.cs
- DataGridViewComboBoxCell.cs
- TaskFormBase.cs
- TraceSection.cs
- ProgressChangedEventArgs.cs
- AuthenticationConfig.cs
- NativeCompoundFileAPIs.cs
- DBNull.cs
- BrowserPolicyValidator.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- DocumentPaginator.cs
- BookmarkCallbackWrapper.cs
- Bits.cs
- SessionEndingEventArgs.cs
- DictionaryEntry.cs
- TreeViewTemplateSelector.cs
- ForwardPositionQuery.cs
- COMException.cs
- PopupControlService.cs
- elementinformation.cs
- SqlUtils.cs
- StatusBar.cs
- RuntimeConfigLKG.cs
- SoapAttributes.cs
- RegexBoyerMoore.cs
- StandardToolWindows.cs
- TraceFilter.cs
- Rect3DConverter.cs
- ProvidePropertyAttribute.cs
- Compiler.cs
- WebConfigurationHostFileChange.cs
- SubMenuStyle.cs
- MexHttpsBindingCollectionElement.cs
- XmlSchemaComplexContentExtension.cs
- SchemaLookupTable.cs
- ObjectDataSource.cs
- DataSourceXmlSubItemAttribute.cs
- EventHandlersDesigner.cs
- ContentPlaceHolder.cs
- TableLayoutColumnStyleCollection.cs
- ResourceCodeDomSerializer.cs
- XmlWrappingReader.cs
- Baml2006ReaderFrame.cs
- DesignBindingPicker.cs
- BulletedList.cs
- ToolCreatedEventArgs.cs
- ContainerActivationHelper.cs
- BitConverter.cs
- Application.cs
- XamlPoint3DCollectionSerializer.cs
- ServiceControllerDesigner.cs
- WebPartCatalogCloseVerb.cs
- TreeNodeClickEventArgs.cs
- DataErrorValidationRule.cs
- StylusEventArgs.cs
- Add.cs
- MetadataException.cs