Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewRowConverter.cs / 1 / DataGridViewRowConverter.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.Drawing; using System.Diagnostics; using System.Globalization; using System.Reflection; internal class DataGridViewRowConverter : ExpandableObjectConverter { public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ////// 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"); } DataGridViewRow dataGridViewRow = value as DataGridViewRow; if (destinationType == typeof(InstanceDescriptor) && dataGridViewRow != null) { // public DataGridViewRow() // ConstructorInfo ctor = dataGridViewRow.GetType().GetConstructor(new Type[0]); if (ctor != null) { 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.Drawing; using System.Diagnostics; using System.Globalization; using System.Reflection; internal class DataGridViewRowConverter : ExpandableObjectConverter { public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ////// 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"); } DataGridViewRow dataGridViewRow = value as DataGridViewRow; if (destinationType == typeof(InstanceDescriptor) && dataGridViewRow != null) { // public DataGridViewRow() // ConstructorInfo ctor = dataGridViewRow.GetType().GetConstructor(new Type[0]); if (ctor != null) { 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
- CompoundFileStreamReference.cs
- NonValidatingSecurityTokenAuthenticator.cs
- JoinTreeSlot.cs
- WindowProviderWrapper.cs
- PageThemeBuildProvider.cs
- ListViewInsertionMark.cs
- BamlRecordReader.cs
- InternalPolicyElement.cs
- ItemCheckedEvent.cs
- ArgumentException.cs
- MimeObjectFactory.cs
- RequestQueue.cs
- PrivateFontCollection.cs
- BindingSource.cs
- EditorZoneBase.cs
- HGlobalSafeHandle.cs
- SqlConnectionManager.cs
- TextEditorContextMenu.cs
- WhiteSpaceTrimStringConverter.cs
- COM2FontConverter.cs
- UnmanagedMemoryStreamWrapper.cs
- ResetableIterator.cs
- MediaContext.cs
- TransactionProxy.cs
- TypeUtil.cs
- EffectiveValueEntry.cs
- ScrollEventArgs.cs
- FontStretchConverter.cs
- Wizard.cs
- UrlRoutingModule.cs
- EncryptedPackage.cs
- Blend.cs
- ItemCollection.cs
- ManagedIStream.cs
- ChangeConflicts.cs
- ScrollItemPatternIdentifiers.cs
- loginstatus.cs
- Attributes.cs
- CodeDelegateCreateExpression.cs
- EllipticalNodeOperations.cs
- StackOverflowException.cs
- DictionaryContent.cs
- AddInSegmentDirectoryNotFoundException.cs
- VectorAnimation.cs
- Environment.cs
- Vector3DAnimationBase.cs
- PackageRelationshipCollection.cs
- BevelBitmapEffect.cs
- Vector3DAnimation.cs
- DeferredElementTreeState.cs
- DeferredSelectedIndexReference.cs
- ClientTargetSection.cs
- CustomCredentialPolicy.cs
- RealProxy.cs
- SystemDropShadowChrome.cs
- CustomTypeDescriptor.cs
- TextFormatterHost.cs
- ProtocolsConfiguration.cs
- LambdaReference.cs
- ShapeTypeface.cs
- DependencyPropertyConverter.cs
- MsmqIntegrationMessageProperty.cs
- Int32Converter.cs
- ChangeInterceptorAttribute.cs
- ProcessHostMapPath.cs
- LineVisual.cs
- FormatVersion.cs
- __ComObject.cs
- HorizontalAlignConverter.cs
- WsatServiceAddress.cs
- Int32AnimationBase.cs
- RowSpanVector.cs
- ConditionCollection.cs
- XPathDocument.cs
- OdbcErrorCollection.cs
- TdsParserHelperClasses.cs
- QualificationDataAttribute.cs
- PasswordTextNavigator.cs
- BitmapCacheBrush.cs
- SlipBehavior.cs
- HttpProfileBase.cs
- ReliableDuplexSessionChannel.cs
- ToolStripManager.cs
- ExecutionContext.cs
- ImplicitInputBrush.cs
- ControlCommandSet.cs
- DrawingImage.cs
- TableLayoutPanelCellPosition.cs
- TemplateAction.cs
- SoapInteropTypes.cs
- CompilerGeneratedAttribute.cs
- LogLogRecordHeader.cs
- EncoderReplacementFallback.cs
- Rotation3DAnimation.cs
- SearchForVirtualItemEventArgs.cs
- ProfileSection.cs
- InternalMappingException.cs
- EventLogPermission.cs
- ValueQuery.cs
- RotateTransform.cs