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 / 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
- ObjectFullSpanRewriter.cs
- Latin1Encoding.cs
- ConfigXmlWhitespace.cs
- TransactionManagerProxy.cs
- SerialPort.cs
- StringInfo.cs
- RemotingSurrogateSelector.cs
- ThicknessConverter.cs
- DetailsViewUpdatedEventArgs.cs
- RecipientInfo.cs
- SafePipeHandle.cs
- SuppressIldasmAttribute.cs
- FontFamily.cs
- CodeAttachEventStatement.cs
- RNGCryptoServiceProvider.cs
- UriSectionReader.cs
- SerializationFieldInfo.cs
- CategoryGridEntry.cs
- MouseCaptureWithinProperty.cs
- StateMachine.cs
- ConfigurationElementProperty.cs
- OdbcEnvironmentHandle.cs
- CodePrimitiveExpression.cs
- SourceElementsCollection.cs
- PointCollectionValueSerializer.cs
- Point.cs
- controlskin.cs
- DbProviderServices.cs
- SqlHelper.cs
- JapaneseLunisolarCalendar.cs
- BitmapScalingModeValidation.cs
- XmlSchemaComplexContentRestriction.cs
- ExceptionHandlerDesigner.cs
- NetCodeGroup.cs
- WindowInteractionStateTracker.cs
- OdbcDataAdapter.cs
- VisualStyleInformation.cs
- LayoutSettings.cs
- processwaithandle.cs
- localization.cs
- ItemList.cs
- ButtonStandardAdapter.cs
- Geometry.cs
- DataGridViewColumnStateChangedEventArgs.cs
- ObjectQueryExecutionPlan.cs
- DbProviderFactories.cs
- TextEndOfParagraph.cs
- DataSvcMapFile.cs
- VirtualPathProvider.cs
- DataGridViewToolTip.cs
- BooleanKeyFrameCollection.cs
- Context.cs
- QilLoop.cs
- MonthChangedEventArgs.cs
- ASCIIEncoding.cs
- MasterPageCodeDomTreeGenerator.cs
- Rect3DValueSerializer.cs
- PropertyMap.cs
- SafeViewOfFileHandle.cs
- OdbcConnectionOpen.cs
- XmlSchemaElement.cs
- ControlAdapter.cs
- SourceChangedEventArgs.cs
- BitmapVisualManager.cs
- DataPagerFieldCollection.cs
- SafeProcessHandle.cs
- CompoundFileIOPermission.cs
- StructuredType.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- ParseHttpDate.cs
- WinFormsComponentEditor.cs
- DeviceContext2.cs
- TextEditorCopyPaste.cs
- DependencyPropertyValueSerializer.cs
- SqlStream.cs
- Update.cs
- BinaryParser.cs
- Base64Decoder.cs
- OrderPreservingSpoolingTask.cs
- UnitySerializationHolder.cs
- XmlSchemaObjectCollection.cs
- ToolStripPanelRow.cs
- ResXResourceSet.cs
- OdbcTransaction.cs
- FlowDocumentPageViewerAutomationPeer.cs
- MessageQueueCriteria.cs
- CompositeFontInfo.cs
- RightsManagementEncryptionTransform.cs
- SmtpMail.cs
- NumericUpDown.cs
- HtmlInputReset.cs
- ProviderConnectionPoint.cs
- WebPartMinimizeVerb.cs
- AnimationClock.cs
- ResourceWriter.cs
- UnitControl.cs
- WebPartAuthorizationEventArgs.cs
- GeometryGroup.cs
- SourceCollection.cs
- AssemblyName.cs