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
- FixedMaxHeap.cs
- XmlSchemaComplexContentRestriction.cs
- GeometryCollection.cs
- FontUnitConverter.cs
- AllMembershipCondition.cs
- ContainerFilterService.cs
- TdsParserHelperClasses.cs
- CurrentTimeZone.cs
- ImplicitInputBrush.cs
- HtmlInputRadioButton.cs
- SplitContainer.cs
- WebPartDescriptionCollection.cs
- StringReader.cs
- LongCountAggregationOperator.cs
- Pkcs9Attribute.cs
- DataTransferEventArgs.cs
- InstanceCreationEditor.cs
- TrackBarRenderer.cs
- ConnectionPointCookie.cs
- PackageDigitalSignature.cs
- SqlXmlStorage.cs
- HighlightVisual.cs
- HttpListenerRequestUriBuilder.cs
- DefaultValueMapping.cs
- TextRangeEdit.cs
- ImpersonateTokenRef.cs
- UniformGrid.cs
- NativeMethods.cs
- InheritanceRules.cs
- httpserverutility.cs
- linebase.cs
- WebPartUtil.cs
- ExpressionQuoter.cs
- ReaderWriterLockWrapper.cs
- ScriptBehaviorDescriptor.cs
- ExpressionParser.cs
- Rect.cs
- ReferencedAssembly.cs
- StickyNoteContentControl.cs
- PixelFormatConverter.cs
- NamespaceList.cs
- WebPartsPersonalization.cs
- PageTheme.cs
- StringKeyFrameCollection.cs
- OleDbEnumerator.cs
- PasswordPropertyTextAttribute.cs
- BlurBitmapEffect.cs
- OutgoingWebResponseContext.cs
- Executor.cs
- StatusBarPanel.cs
- ParentUndoUnit.cs
- CalendarDataBindingHandler.cs
- TrackingStringDictionary.cs
- HMACSHA256.cs
- Util.cs
- SQLBinaryStorage.cs
- QueryOutputWriterV1.cs
- CompleteWizardStep.cs
- TemplateBamlRecordReader.cs
- LineGeometry.cs
- SchemaName.cs
- OperationAbortedException.cs
- SafeArrayTypeMismatchException.cs
- TreeNode.cs
- NewArrayExpression.cs
- SchemaSetCompiler.cs
- LexicalChunk.cs
- CompiledQuery.cs
- FilteredAttributeCollection.cs
- UIElementPropertyUndoUnit.cs
- ObjectConverter.cs
- StringArrayConverter.cs
- Lookup.cs
- DataGridCell.cs
- ValidationErrorEventArgs.cs
- SettingsPropertyWrongTypeException.cs
- DefaultObjectMappingItemCollection.cs
- EdmTypeAttribute.cs
- Byte.cs
- OutputWindow.cs
- WinEventTracker.cs
- WindowAutomationPeer.cs
- ReflectionServiceProvider.cs
- ElementsClipboardData.cs
- XmlDataDocument.cs
- BamlRecords.cs
- GeometryModel3D.cs
- Window.cs
- DesignerHelpers.cs
- CachedPathData.cs
- DBConnectionString.cs
- ActionNotSupportedException.cs
- ProxyGenerator.cs
- Request.cs
- RecommendedAsConfigurableAttribute.cs
- DbCommandDefinition.cs
- ObjectDataSourceEventArgs.cs
- DynamicDataRouteHandler.cs
- _LocalDataStore.cs
- PropertyOverridesDialog.cs