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 / TreeViewImageIndexConverter.cs / 1 / TreeViewImageIndexConverter.cs
                        
                        
                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
//  
//----------------------------------------------------------------------------- 
/* 
 */ 
 
namespace System.Windows.Forms {
    using System.Collections;
    using System.ComponentModel; 
    using System.Diagnostics;
    using System.Globalization; 
    using System.Collections.Specialized; 
    ///   
    /// 
    ///      TreeViewImageIndexConverter is a class that can be used to convert
    ///      image index values one data type to another.
    ///   
    public class TreeViewImageIndexConverter : ImageIndexConverter {
 
        ///   
        protected override bool IncludeNoneAsStandardValue {
            get { 
                return false;
            }
        }
 
        ///  
        ///  
        ///     
        ///       Converts the given value object to a 32-bit signed integer object.
        ///      
        ///  
        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
            string strValue = value as string; 
            if (strValue != null) {
 
               if (String.Compare(strValue, SR.GetString(SR.toStringDefault), true, culture) == 0) { 
                   return -1;
               } 
               else if (String.Compare(strValue, SR.GetString(SR.toStringNone), true, culture) == 0) {
                   return -2;
               }
            } 
 	    return base.ConvertFrom(context, culture, value);
        } 
 
        ///   
        /// 
        ///      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 is int) {
                int intValue = (int)value; 
                if (intValue == -1) { 
                    return SR.GetString(SR.toStringDefault);
                } 
                else if (intValue == -2) {
                    return SR.GetString(SR.toStringNone);
                }
            } 
            return base.ConvertTo(context, culture, value, destinationType); 
        } 
        ///   
        /// 
        ///      Retrieves a collection containing a set of standard values
        ///      for the data type this validator is designed for.  This
        ///      will return null if the data type does not support a 
        ///      standard set of values.
        ///   
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { 
            if (context != null && context.Instance != null) {
                object instance = context.Instance; 
                PropertyDescriptor imageListProp = ImageListUtils.GetImageListProperty(context.PropertyDescriptor, ref instance);
                while (instance != null && imageListProp == null) { 
                    PropertyDescriptorCollection props = TypeDescriptor.GetProperties(instance);
 
                    foreach (PropertyDescriptor prop in props) { 
                        if (typeof(ImageList).IsAssignableFrom(prop.PropertyType)) {
                            imageListProp = prop; 
                            break;
                        }
                    }
 
                    if (imageListProp == null) {
                        // We didn't find the image list in this component.  See if the 
                        // component has a "parent" property.  If so, walk the tree... 
                        //
                        PropertyDescriptor parentProp = props[ParentImageListProperty]; 
                        if (parentProp != null) {
                            instance = parentProp.GetValue(instance);
                        }
                        else { 
                            // Stick a fork in us, we're done.
                            // 
                            instance = null; 
                        }
                    } 
                }
                if (imageListProp != null) {
                    ImageList imageList = (ImageList)imageListProp.GetValue(instance); 
                    if (imageList != null) { 
                        // Create array to contain standard values 
                        //
                        object[] values; 
                        int nImages = imageList.Images.Count+2;
                        values = new object[nImages];
			values[nImages-2] = -1;
			values[nImages-1] = -2; 
                        // Fill in the array 
                        // 
                        for (int i = 0; i < nImages-2; i++) {
                            values[i] = i; 
                        }
                        return new StandardValuesCollection(values);
                    }
                } 
            }
 
            return new StandardValuesCollection(new object[] { -1, -2 }); 
        }
    } 
} // Namespace system.windows.forms
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
//  
//----------------------------------------------------------------------------- 
/* 
 */ 
 
namespace System.Windows.Forms {
    using System.Collections;
    using System.ComponentModel; 
    using System.Diagnostics;
    using System.Globalization; 
    using System.Collections.Specialized; 
    ///   
    /// 
    ///      TreeViewImageIndexConverter is a class that can be used to convert
    ///      image index values one data type to another.
    ///   
    public class TreeViewImageIndexConverter : ImageIndexConverter {
 
        ///   
        protected override bool IncludeNoneAsStandardValue {
            get { 
                return false;
            }
        }
 
        ///  
        ///  
        ///     
        ///       Converts the given value object to a 32-bit signed integer object.
        ///      
        ///  
        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
            string strValue = value as string; 
            if (strValue != null) {
 
               if (String.Compare(strValue, SR.GetString(SR.toStringDefault), true, culture) == 0) { 
                   return -1;
               } 
               else if (String.Compare(strValue, SR.GetString(SR.toStringNone), true, culture) == 0) {
                   return -2;
               }
            } 
 	    return base.ConvertFrom(context, culture, value);
        } 
 
        ///   
        /// 
        ///      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 is int) {
                int intValue = (int)value; 
                if (intValue == -1) { 
                    return SR.GetString(SR.toStringDefault);
                } 
                else if (intValue == -2) {
                    return SR.GetString(SR.toStringNone);
                }
            } 
            return base.ConvertTo(context, culture, value, destinationType); 
        } 
        ///   
        /// 
        ///      Retrieves a collection containing a set of standard values
        ///      for the data type this validator is designed for.  This
        ///      will return null if the data type does not support a 
        ///      standard set of values.
        ///   
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { 
            if (context != null && context.Instance != null) {
                object instance = context.Instance; 
                PropertyDescriptor imageListProp = ImageListUtils.GetImageListProperty(context.PropertyDescriptor, ref instance);
                while (instance != null && imageListProp == null) { 
                    PropertyDescriptorCollection props = TypeDescriptor.GetProperties(instance);
 
                    foreach (PropertyDescriptor prop in props) { 
                        if (typeof(ImageList).IsAssignableFrom(prop.PropertyType)) {
                            imageListProp = prop; 
                            break;
                        }
                    }
 
                    if (imageListProp == null) {
                        // We didn't find the image list in this component.  See if the 
                        // component has a "parent" property.  If so, walk the tree... 
                        //
                        PropertyDescriptor parentProp = props[ParentImageListProperty]; 
                        if (parentProp != null) {
                            instance = parentProp.GetValue(instance);
                        }
                        else { 
                            // Stick a fork in us, we're done.
                            // 
                            instance = null; 
                        }
                    } 
                }
                if (imageListProp != null) {
                    ImageList imageList = (ImageList)imageListProp.GetValue(instance); 
                    if (imageList != null) { 
                        // Create array to contain standard values 
                        //
                        object[] values; 
                        int nImages = imageList.Images.Count+2;
                        values = new object[nImages];
			values[nImages-2] = -1;
			values[nImages-1] = -2; 
                        // Fill in the array 
                        // 
                        for (int i = 0; i < nImages-2; i++) {
                            values[i] = i; 
                        }
                        return new StandardValuesCollection(values);
                    }
                } 
            }
 
            return new StandardValuesCollection(new object[] { -1, -2 }); 
        }
    } 
} // Namespace system.windows.forms
// 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
- COM2ComponentEditor.cs
 - _SecureChannel.cs
 - HttpListenerResponse.cs
 - ProcessModelInfo.cs
 - querybuilder.cs
 - ItemTypeToolStripMenuItem.cs
 - FlowDocumentScrollViewer.cs
 - HttpEncoder.cs
 - ArrayTypeMismatchException.cs
 - ArraySubsetEnumerator.cs
 - _ListenerAsyncResult.cs
 - TransformGroup.cs
 - NetNamedPipeSecurityElement.cs
 - CharAnimationBase.cs
 - TraceSwitch.cs
 - SafeNativeMethods.cs
 - User.cs
 - IDispatchConstantAttribute.cs
 - EncryptedPackageFilter.cs
 - DataColumnChangeEvent.cs
 - ContextInformation.cs
 - InputScope.cs
 - Pair.cs
 - WizardPanel.cs
 - ToolstripProfessionalRenderer.cs
 - AbstractExpressions.cs
 - ApplicationSecurityManager.cs
 - OleDbInfoMessageEvent.cs
 - BlobPersonalizationState.cs
 - ApplicationManager.cs
 - ToolboxItem.cs
 - FaultHandlingFilter.cs
 - WebConfigurationManager.cs
 - XPathException.cs
 - SqlUdtInfo.cs
 - TreeViewHitTestInfo.cs
 - Stacktrace.cs
 - wgx_sdk_version.cs
 - DataViewManager.cs
 - RangeBase.cs
 - IdentifierService.cs
 - OdbcConnectionStringbuilder.cs
 - ProcessModule.cs
 - LineSegment.cs
 - HtmlElementCollection.cs
 - StorageRoot.cs
 - XmlIlVisitor.cs
 - TransformPattern.cs
 - SQLChars.cs
 - CreateUserWizardStep.cs
 - UnsafeNativeMethods.cs
 - WebControlAdapter.cs
 - FileDialogCustomPlacesCollection.cs
 - SecurityAppliedMessage.cs
 - CorePropertiesFilter.cs
 - WebPartVerbsEventArgs.cs
 - XPathPatternParser.cs
 - StringDictionary.cs
 - Point.cs
 - ScalarConstant.cs
 - SecurityRuntime.cs
 - LinqDataSourceInsertEventArgs.cs
 - FormViewRow.cs
 - XmlMemberMapping.cs
 - ComplexObject.cs
 - BooleanFunctions.cs
 - Scene3D.cs
 - MappingModelBuildProvider.cs
 - TemplateControlParser.cs
 - TextSerializer.cs
 - CAGDesigner.cs
 - SettingsPropertyNotFoundException.cs
 - IndentedTextWriter.cs
 - PointLight.cs
 - ColumnMapProcessor.cs
 - BitmapFrameDecode.cs
 - SqlMetaData.cs
 - ListenerElementsCollection.cs
 - RuntimeDelegateArgument.cs
 - SchemaElementLookUpTableEnumerator.cs
 - CodeMemberField.cs
 - TextDecorationCollection.cs
 - PtsContext.cs
 - HwndStylusInputProvider.cs
 - TextComposition.cs
 - DataObjectEventArgs.cs
 - EventLogPermissionHolder.cs
 - GlyphCollection.cs
 - PerformanceCounterLib.cs
 - ImmutableObjectAttribute.cs
 - PostBackOptions.cs
 - CodeIdentifier.cs
 - PageCatalogPartDesigner.cs
 - UpdatePanelTriggerCollection.cs
 - DeferredTextReference.cs
 - ContextMenu.cs
 - HandlerBase.cs
 - FormsAuthenticationModule.cs
 - TreePrinter.cs
 - CodeArrayCreateExpression.cs