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
- RequestSecurityTokenForGetBrowserToken.cs
- XmlNotation.cs
- ServiceHttpHandlerFactory.cs
- ClientScriptManager.cs
- TextElementEnumerator.cs
- XhtmlTextWriter.cs
- DropSource.cs
- CompressStream.cs
- ResourcePermissionBaseEntry.cs
- TypefaceMap.cs
- CompilationPass2Task.cs
- DBNull.cs
- SafeBuffer.cs
- NetCodeGroup.cs
- DataViewManagerListItemTypeDescriptor.cs
- LowerCaseStringConverter.cs
- TcpProcessProtocolHandler.cs
- BindingSource.cs
- TdsValueSetter.cs
- InlineObject.cs
- Processor.cs
- ValueProviderWrapper.cs
- DataControlFieldHeaderCell.cs
- DBDataPermissionAttribute.cs
- ColorAnimationUsingKeyFrames.cs
- XmlSchemaCompilationSettings.cs
- SendActivityValidator.cs
- BindingContext.cs
- DocumentXmlWriter.cs
- ThemeDirectoryCompiler.cs
- MetadataArtifactLoader.cs
- WindowVisualStateTracker.cs
- HtmlAnchor.cs
- IRCollection.cs
- SerializationSectionGroup.cs
- ToolStripGripRenderEventArgs.cs
- DataGridColumnHeadersPresenter.cs
- MenuItem.cs
- Point3DCollection.cs
- X509Certificate2Collection.cs
- ConnectionManagementElement.cs
- SecureUICommand.cs
- MethodExpr.cs
- TemplatePartAttribute.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- DbProviderFactory.cs
- Codec.cs
- ToolStripItemEventArgs.cs
- InputBinder.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- Scanner.cs
- LocalizationComments.cs
- BinarySerializer.cs
- MsmqNonTransactedPoisonHandler.cs
- CryptoConfig.cs
- DisplayMemberTemplateSelector.cs
- BeginEvent.cs
- DirectoryInfo.cs
- PauseStoryboard.cs
- EllipseGeometry.cs
- UriExt.cs
- IPAddressCollection.cs
- TimeSpanHelper.cs
- ClientFormsAuthenticationCredentials.cs
- ExtenderProvidedPropertyAttribute.cs
- FormConverter.cs
- OperationContextScope.cs
- FixedSOMTableCell.cs
- AppDomainManager.cs
- SchemeSettingElementCollection.cs
- FixedSOMFixedBlock.cs
- DirectionalLight.cs
- QilValidationVisitor.cs
- DefaultDialogButtons.cs
- TagPrefixCollection.cs
- HttpListenerRequest.cs
- CancelEventArgs.cs
- autovalidator.cs
- StringSource.cs
- ScriptingJsonSerializationSection.cs
- PinnedBufferMemoryStream.cs
- FieldInfo.cs
- XmlDataSourceView.cs
- StrokeCollection2.cs
- DataColumn.cs
- SqlIdentifier.cs
- UserControlCodeDomTreeGenerator.cs
- ToolStripItemRenderEventArgs.cs
- DoubleCollection.cs
- FormattedTextSymbols.cs
- HtmlAnchor.cs
- CodeIdentifiers.cs
- Marshal.cs
- InvalidPrinterException.cs
- RightsDocument.cs
- ProxyWebPartManager.cs
- HashHelper.cs
- XmlParserContext.cs
- Pen.cs
- PerformanceCounterCategory.cs