Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellStyleConverter.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlMapping.cs
- SQLBoolean.cs
- AutoGeneratedField.cs
- InputReportEventArgs.cs
- TraceUtility.cs
- DataColumnMapping.cs
- ParallelForEach.cs
- VersionPair.cs
- ProfessionalColors.cs
- StringWriter.cs
- IgnoreFileBuildProvider.cs
- StringBuilder.cs
- ObjectDataSourceDisposingEventArgs.cs
- XPathNodePointer.cs
- CrossContextChannel.cs
- OleDbRowUpdatingEvent.cs
- SerializationObjectManager.cs
- DbConnectionPoolGroupProviderInfo.cs
- PrinterSettings.cs
- AxisAngleRotation3D.cs
- Rfc2898DeriveBytes.cs
- SymmetricAlgorithm.cs
- CustomErrorCollection.cs
- DetailsViewRowCollection.cs
- ValidationErrorEventArgs.cs
- HttpValueCollection.cs
- XmlnsCompatibleWithAttribute.cs
- DoubleLink.cs
- UnsettableComboBox.cs
- XmlDocument.cs
- DoubleAnimationBase.cs
- UIElementPropertyUndoUnit.cs
- XpsDigitalSignature.cs
- CommonDialog.cs
- ToolStripDropDownMenu.cs
- RtfControls.cs
- ClickablePoint.cs
- CheckBoxPopupAdapter.cs
- XmlDataSourceDesigner.cs
- TextEditorMouse.cs
- LockCookie.cs
- RTLAwareMessageBox.cs
- ToolStripRenderEventArgs.cs
- UnsafeNativeMethods.cs
- MessageBox.cs
- DataGridViewRowCancelEventArgs.cs
- NetworkAddressChange.cs
- ViewStateChangedEventArgs.cs
- GeometryDrawing.cs
- EventHandlersStore.cs
- VirtualPathUtility.cs
- EdgeProfileValidation.cs
- ILGenerator.cs
- DataFieldConverter.cs
- CachedRequestParams.cs
- InstanceKeyNotReadyException.cs
- ProfileGroupSettingsCollection.cs
- TimelineCollection.cs
- CodeDomLocalizationProvider.cs
- ProviderMetadata.cs
- ParameterToken.cs
- ExceptionUtil.cs
- Vector3DAnimation.cs
- SqlDataSourceCache.cs
- TextSelectionHighlightLayer.cs
- ShapingEngine.cs
- HttpClientCertificate.cs
- TriggerBase.cs
- AuthenticationSection.cs
- PenThread.cs
- CommonProperties.cs
- MainMenu.cs
- DefaultValueConverter.cs
- MessageSmuggler.cs
- GroupByQueryOperator.cs
- ImportDesigner.xaml.cs
- AlphabeticalEnumConverter.cs
- SamlAction.cs
- RowsCopiedEventArgs.cs
- UpdatePanelControlTrigger.cs
- RolePrincipal.cs
- SeparatorAutomationPeer.cs
- TreeIterators.cs
- ByteStorage.cs
- DirectoryLocalQuery.cs
- XmlNotation.cs
- AnonymousIdentificationModule.cs
- NativeActivityMetadata.cs
- WebPartCloseVerb.cs
- NullReferenceException.cs
- ValidationHelpers.cs
- OutputCacheSettings.cs
- ReaderWriterLockWrapper.cs
- Classification.cs
- XPathNodeIterator.cs
- AvTraceFormat.cs
- ViewPort3D.cs
- AttributeInfo.cs
- MetadataItemSerializer.cs
- MSAANativeProvider.cs