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 / ColumnHeaderConverter.cs / 1 / ColumnHeaderConverter.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; ////// /// public class ColumnHeaderConverter : ExpandableObjectConverter { ////// /// 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 ColumnHeader) { ColumnHeader col = (ColumnHeader) value; ConstructorInfo ctor; Type t = TypeDescriptor.GetReflectionType(value); InstanceDescriptor id = null; if (col.ImageIndex != -1) { ctor = t.GetConstructor(new Type[]{typeof(int)}); if (ctor != null) { id = new InstanceDescriptor(ctor, new object[]{col.ImageIndex}, false); } } if (id == null && !String.IsNullOrEmpty(col.ImageKey)) { ctor = t.GetConstructor(new Type[]{typeof(string)}); if (ctor != null) { id = new InstanceDescriptor(ctor, new object[]{col.ImageKey}, false); } } if (id == null) { ctor = t.GetConstructor(new Type[0]); if (ctor != null) { return new InstanceDescriptor(ctor, new object[0], false); } else { throw new ArgumentException(SR.GetString(SR.NoDefaultConstructor, t.FullName)); } } return id; } 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; ////// /// public class ColumnHeaderConverter : ExpandableObjectConverter { ////// /// 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 ColumnHeader) { ColumnHeader col = (ColumnHeader) value; ConstructorInfo ctor; Type t = TypeDescriptor.GetReflectionType(value); InstanceDescriptor id = null; if (col.ImageIndex != -1) { ctor = t.GetConstructor(new Type[]{typeof(int)}); if (ctor != null) { id = new InstanceDescriptor(ctor, new object[]{col.ImageIndex}, false); } } if (id == null && !String.IsNullOrEmpty(col.ImageKey)) { ctor = t.GetConstructor(new Type[]{typeof(string)}); if (ctor != null) { id = new InstanceDescriptor(ctor, new object[]{col.ImageKey}, false); } } if (id == null) { ctor = t.GetConstructor(new Type[0]); if (ctor != null) { return new InstanceDescriptor(ctor, new object[0], false); } else { throw new ArgumentException(SR.GetString(SR.NoDefaultConstructor, t.FullName)); } } return id; } 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
- ColumnHeader.cs
- AccessKeyManager.cs
- OrderedDictionary.cs
- SafeLibraryHandle.cs
- Error.cs
- __ComObject.cs
- Nullable.cs
- TraceLevelStore.cs
- ValuePatternIdentifiers.cs
- Size.cs
- DataGridViewComponentPropertyGridSite.cs
- ScriptControlDescriptor.cs
- Button.cs
- GraphicsContext.cs
- IISMapPath.cs
- InternalTransaction.cs
- BorderGapMaskConverter.cs
- VarRefManager.cs
- ParallelForEach.cs
- IndexedString.cs
- X509Utils.cs
- ViewKeyConstraint.cs
- DisplayMemberTemplateSelector.cs
- UrlPath.cs
- SearchExpression.cs
- VoiceSynthesis.cs
- PageStatePersister.cs
- ISAPIWorkerRequest.cs
- DataGridViewCellCancelEventArgs.cs
- _NestedSingleAsyncResult.cs
- ConfigurationStrings.cs
- remotingproxy.cs
- DesignerForm.cs
- RubberbandSelector.cs
- storagemappingitemcollection.viewdictionary.cs
- RecordManager.cs
- ProfileManager.cs
- RowTypePropertyElement.cs
- HtmlEncodedRawTextWriter.cs
- ToolStripTextBox.cs
- DataGridState.cs
- BindingMAnagerBase.cs
- NameValuePair.cs
- WriterOutput.cs
- PeerCollaborationPermission.cs
- StrokeCollection2.cs
- ExternalFile.cs
- ActionMessageFilter.cs
- Tokenizer.cs
- XamlSerializerUtil.cs
- FontStyle.cs
- ADConnectionHelper.cs
- ParsedAttributeCollection.cs
- CorePropertiesFilter.cs
- ToolboxComponentsCreatedEventArgs.cs
- ScopelessEnumAttribute.cs
- ImageCreator.cs
- ClassValidator.cs
- SchemaComplexType.cs
- CommandBinding.cs
- GenericRootAutomationPeer.cs
- OledbConnectionStringbuilder.cs
- WorkflowMarkupSerializationProvider.cs
- DispatcherProcessingDisabled.cs
- ExceptionValidationRule.cs
- SoapMessage.cs
- InstanceKeyNotReadyException.cs
- SafeIUnknown.cs
- TextEditorParagraphs.cs
- KeyNotFoundException.cs
- FormClosingEvent.cs
- StoreItemCollection.Loader.cs
- WebContext.cs
- TextWriterTraceListener.cs
- CleanUpVirtualizedItemEventArgs.cs
- translator.cs
- EmptyStringExpandableObjectConverter.cs
- TTSEvent.cs
- ModelPropertyImpl.cs
- MultitargetingHelpers.cs
- HttpListenerRequestUriBuilder.cs
- NumberFormatInfo.cs
- GridEntry.cs
- safex509handles.cs
- SQLMoney.cs
- SqlConnectionString.cs
- SafeUserTokenHandle.cs
- DataListItem.cs
- XmlSchemaGroupRef.cs
- DefaultParameterValueAttribute.cs
- XmlSchemaImport.cs
- ElementNotEnabledException.cs
- DataIdProcessor.cs
- mediaclock.cs
- PointHitTestParameters.cs
- AddressingProperty.cs
- CheckBox.cs
- BinaryMethodMessage.cs
- MarshalDirectiveException.cs
- SignatureResourcePool.cs