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
- FileDialog_Vista.cs
- FontUnit.cs
- FontDialog.cs
- ShapeTypeface.cs
- M3DUtil.cs
- ConfigXmlText.cs
- SmiConnection.cs
- SerializationHelper.cs
- FrameworkElementFactoryMarkupObject.cs
- UrlRoutingModule.cs
- TransformPatternIdentifiers.cs
- ObjectItemCachedAssemblyLoader.cs
- Button.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- PartManifestEntry.cs
- ConnectionStringSettingsCollection.cs
- XomlCompilerResults.cs
- GetWinFXPath.cs
- PhysicalFontFamily.cs
- ExecutionEngineException.cs
- XmlSchemaSimpleContentRestriction.cs
- EarlyBoundInfo.cs
- DesignerObjectListAdapter.cs
- IncrementalReadDecoders.cs
- TrueReadOnlyCollection.cs
- ADMembershipUser.cs
- SocketPermission.cs
- WindowManager.cs
- LongTypeConverter.cs
- QueryOutputWriter.cs
- InputBuffer.cs
- KerberosReceiverSecurityToken.cs
- StylusPoint.cs
- BindingSource.cs
- LZCodec.cs
- TransactionsSectionGroup.cs
- FixedSOMTextRun.cs
- PackageDocument.cs
- MarkupCompiler.cs
- ErrorRuntimeConfig.cs
- XmlDesignerDataSourceView.cs
- ResXResourceSet.cs
- AddInActivator.cs
- ObjectDataSourceStatusEventArgs.cs
- XmlILStorageConverter.cs
- HtmlEmptyTagControlBuilder.cs
- ScriptRegistrationManager.cs
- CanExpandCollapseAllConverter.cs
- XmlAttributeCollection.cs
- BehaviorEditorPart.cs
- PlaceHolder.cs
- StackBuilderSink.cs
- CreateParams.cs
- TagMapCollection.cs
- StaticSiteMapProvider.cs
- SchemaNames.cs
- ArcSegment.cs
- ResourcePart.cs
- PrintDocument.cs
- TransformedBitmap.cs
- PresentationSource.cs
- CharacterMetricsDictionary.cs
- DSASignatureDeformatter.cs
- DataColumnPropertyDescriptor.cs
- SerializationObjectManager.cs
- ThemeDictionaryExtension.cs
- XhtmlBasicTextViewAdapter.cs
- SapiRecoInterop.cs
- CustomErrorsSection.cs
- ZoneLinkButton.cs
- DecimalStorage.cs
- ResizeGrip.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- InternalBufferManager.cs
- RoleService.cs
- Double.cs
- PaperSource.cs
- ObservableDictionary.cs
- MetabaseServerConfig.cs
- DataControlButton.cs
- DataGridViewCellCollection.cs
- KeyValueConfigurationCollection.cs
- Canvas.cs
- HttpClientCertificate.cs
- DescendantBaseQuery.cs
- AssemblyAssociatedContentFileAttribute.cs
- ChannelManagerService.cs
- DataGridViewAutoSizeModeEventArgs.cs
- columnmapfactory.cs
- PixelShader.cs
- SmtpSection.cs
- XmlUtf8RawTextWriter.cs
- NativeMethodsCLR.cs
- UrlMappingsSection.cs
- XmlEntityReference.cs
- PublisherIdentityPermission.cs
- XPathScanner.cs
- DrawingCollection.cs
- PackageStore.cs
- BCLDebug.cs