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
- DetailsViewPageEventArgs.cs
- ModulesEntry.cs
- ParameterCollection.cs
- ToolStripDesignerAvailabilityAttribute.cs
- ListViewGroupCollectionEditor.cs
- VectorAnimationUsingKeyFrames.cs
- RuntimeConfig.cs
- RowUpdatedEventArgs.cs
- WSSecurityOneDotZeroSendSecurityHeader.cs
- _SslState.cs
- RegexMatch.cs
- UInt32Converter.cs
- ManagementOperationWatcher.cs
- PolicyException.cs
- ComboBox.cs
- ZipIOLocalFileHeader.cs
- RemotingConfigParser.cs
- AnnotationMap.cs
- RoleManagerEventArgs.cs
- EtwTrace.cs
- CompositeControl.cs
- GridLengthConverter.cs
- PersonalizationDictionary.cs
- ContextTokenTypeConverter.cs
- DashStyle.cs
- InvalidateEvent.cs
- KeyedByTypeCollection.cs
- XmlWriterDelegator.cs
- SecurityManager.cs
- RequestDescription.cs
- OdbcConnectionPoolProviderInfo.cs
- XNodeNavigator.cs
- BamlRecords.cs
- TextSpan.cs
- RectangleGeometry.cs
- GridViewCancelEditEventArgs.cs
- Parser.cs
- Registry.cs
- ThrowHelper.cs
- MexServiceChannelBuilder.cs
- SymbolEqualComparer.cs
- MsdtcClusterUtils.cs
- PolyLineSegment.cs
- DataGridViewCellFormattingEventArgs.cs
- NativeMethods.cs
- WebPartConnectionsConfigureVerb.cs
- StrongNamePublicKeyBlob.cs
- Module.cs
- GlyphsSerializer.cs
- PropertyValue.cs
- XmlnsCache.cs
- Timer.cs
- OleDbStruct.cs
- DataViewSetting.cs
- TemplatePagerField.cs
- SimpleTypeResolver.cs
- PreviewPageInfo.cs
- ObjectFullSpanRewriter.cs
- PrintPageEvent.cs
- SystemWebCachingSectionGroup.cs
- MembershipValidatePasswordEventArgs.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- TreeView.cs
- Storyboard.cs
- RpcCryptoRequest.cs
- AdCreatedEventArgs.cs
- PropertyItem.cs
- CodeDomConfigurationHandler.cs
- FamilyMapCollection.cs
- RetrieveVirtualItemEventArgs.cs
- BindingRestrictions.cs
- LifetimeMonitor.cs
- TypeCodeDomSerializer.cs
- MultiSelectRootGridEntry.cs
- WarningException.cs
- GreenMethods.cs
- ReadOnlyDataSourceView.cs
- DataGridCommandEventArgs.cs
- EmptyCollection.cs
- ParseChildrenAsPropertiesAttribute.cs
- LicenseManager.cs
- CalendarDay.cs
- MissingManifestResourceException.cs
- ViewBox.cs
- EarlyBoundInfo.cs
- XmlHierarchicalEnumerable.cs
- HostingEnvironmentException.cs
- BuildProviderCollection.cs
- sqlinternaltransaction.cs
- ReadOnlyDictionary.cs
- PenThreadPool.cs
- _CacheStreams.cs
- SqlGatherConsumedAliases.cs
- WindowsGraphics2.cs
- ZoneMembershipCondition.cs
- ObservableCollection.cs
- DatatypeImplementation.cs
- DataGridViewButtonColumn.cs
- HttpListenerPrefixCollection.cs
- ThemeDictionaryExtension.cs