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 / TreeViewImageKeyConverter.cs / 1 / TreeViewImageKeyConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Collections.Specialized; ////// /// ImageIndexConverter is a class that can be used to convert /// image index values one data type to another. /// public class TreeViewImageKeyConverter : ImageKeyConverter { ////// /// 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(string) && (value == null)) { return SR.GetString(SR.toStringDefault); } else { string strValue = value as string; if (strValue != null && (strValue.Length == 0)) { return SR.GetString(SR.toStringDefault); } } 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 Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Collections.Specialized; ////// /// ImageIndexConverter is a class that can be used to convert /// image index values one data type to another. /// public class TreeViewImageKeyConverter : ImageKeyConverter { ////// /// 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(string) && (value == null)) { return SR.GetString(SR.toStringDefault); } else { string strValue = value as string; if (strValue != null && (strValue.Length == 0)) { return SR.GetString(SR.toStringDefault); } } 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
- WebPartZoneBase.cs
- DateTimeValueSerializerContext.cs
- OleDbDataAdapter.cs
- HtmlInputPassword.cs
- DocumentGridContextMenu.cs
- MultipleViewPatternIdentifiers.cs
- ModelItemCollection.cs
- SolidColorBrush.cs
- XmlResolver.cs
- WebBaseEventKeyComparer.cs
- SerializationBinder.cs
- TraceHandlerErrorFormatter.cs
- SchemaImporterExtension.cs
- RoleManagerModule.cs
- HttpHeaderCollection.cs
- XmlUtilWriter.cs
- SoapSchemaMember.cs
- SapiRecoInterop.cs
- StoragePropertyMapping.cs
- TrustExchangeException.cs
- EntityContainer.cs
- DragSelectionMessageFilter.cs
- CriticalFinalizerObject.cs
- LayoutSettings.cs
- StringBuilder.cs
- WebPartConnectionCollection.cs
- StructuredProperty.cs
- NewExpression.cs
- CaretElement.cs
- LocationInfo.cs
- HealthMonitoringSection.cs
- ImportCatalogPart.cs
- RegistryPermission.cs
- SpecialNameAttribute.cs
- DynamicVirtualDiscoSearcher.cs
- Vector3D.cs
- StringTraceRecord.cs
- KeyProperty.cs
- XdrBuilder.cs
- SystemException.cs
- NodeFunctions.cs
- BindingWorker.cs
- Preprocessor.cs
- EntityDataReader.cs
- ComponentEditorForm.cs
- DataGridViewCell.cs
- Section.cs
- storepermission.cs
- SiteOfOriginPart.cs
- SessionStateItemCollection.cs
- GridViewColumnHeaderAutomationPeer.cs
- IMembershipProvider.cs
- UserNameSecurityTokenAuthenticator.cs
- XamlHttpHandlerFactory.cs
- ManipulationVelocities.cs
- UriSection.cs
- IPHostEntry.cs
- AttributeEmitter.cs
- EngineSiteSapi.cs
- ProfileService.cs
- View.cs
- DataTableReaderListener.cs
- TypeConverterHelper.cs
- TransformProviderWrapper.cs
- ReferenceConverter.cs
- XmlReader.cs
- WsdlParser.cs
- CompositeFontInfo.cs
- PersonalizationState.cs
- AppSettingsSection.cs
- FixedTextPointer.cs
- AutomationIdentifierGuids.cs
- FormView.cs
- HwndTarget.cs
- CodeTypeDeclaration.cs
- ToolStripScrollButton.cs
- CollectionChangeEventArgs.cs
- TableTextElementCollectionInternal.cs
- InheritanceAttribute.cs
- FontDriver.cs
- DisableDpiAwarenessAttribute.cs
- Process.cs
- Journaling.cs
- CompatibleComparer.cs
- PathStreamGeometryContext.cs
- ProtectedConfigurationSection.cs
- DBBindings.cs
- PropertyGroupDescription.cs
- WebPartAddingEventArgs.cs
- COSERVERINFO.cs
- ProvidePropertyAttribute.cs
- RepeatInfo.cs
- LinqDataSourceStatusEventArgs.cs
- DocumentReference.cs
- IOThreadTimer.cs
- HttpProfileBase.cs
- Invariant.cs
- HostingPreferredMapPath.cs
- KeyTime.cs
- SqlCrossApplyToCrossJoin.cs