Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / ImageFormatConverter.cs / 1305376 / ImageFormatConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing { using System.Diagnostics; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Globalization; using System.Reflection; using System.Drawing.Imaging; ////// /// ImageFormatConverter is a class that can be used to convert /// colors from one data type to another. Access this /// class through the TypeDescriptor. /// public class ImageFormatConverter : TypeConverter { private StandardValuesCollection values; ////// /// public ImageFormatConverter() { } ///[To be supplied.] ////// /// Determines if this converter can convert an object in the given source /// type to the native type of the converter. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } ////// /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ///Gets a value indicating whether this converter can /// convert an object to the given destination type using the context. ////// /// Converts the given object to the converter's native type. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { string strValue = value as string; if (strValue != null) { string text = strValue.Trim(); PropertyInfo[] props = GetProperties(); for (int i = 0; i < props.Length; i++) { PropertyInfo prop = props[i]; if (string.Equals(prop.Name, text, StringComparison.OrdinalIgnoreCase)) { object[] tempIndex = null; return prop.GetValue(null, tempIndex); } } } 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 (value is ImageFormat) { PropertyInfo targetProp = null; PropertyInfo[] props = GetProperties(); foreach(PropertyInfo p in props) { if (p.GetValue(null, null).Equals(value)) { targetProp = p; break; } } if (targetProp != null) { if (destinationType == typeof(string)) { return targetProp.Name; } else if (destinationType == typeof(InstanceDescriptor)) { return new InstanceDescriptor(targetProp, null); } } } return base.ConvertTo(context, culture, value, destinationType); } ////// /// Retrieves the properties for the available image formats. /// private PropertyInfo[] GetProperties() { return typeof(ImageFormat).GetProperties(BindingFlags.Static | BindingFlags.Public); } ////// /// 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 (values == null) { ArrayList list = new ArrayList(); PropertyInfo[] props = GetProperties(); for (int i = 0; i < props.Length; i++) { PropertyInfo prop = props[i]; object[] tempIndex = null; Debug.Assert(prop.GetValue(null, tempIndex) != null, "Property " + prop.Name + " returned NULL"); list.Add(prop.GetValue(null, tempIndex)); } values = new StandardValuesCollection(list.ToArray()); } return values; } ////// /// Determines if this object supports a standard set of values /// that can be picked from a list. /// public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing { using System.Diagnostics; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Globalization; using System.Reflection; using System.Drawing.Imaging; ////// /// ImageFormatConverter is a class that can be used to convert /// colors from one data type to another. Access this /// class through the TypeDescriptor. /// public class ImageFormatConverter : TypeConverter { private StandardValuesCollection values; ////// /// public ImageFormatConverter() { } ///[To be supplied.] ////// /// Determines if this converter can convert an object in the given source /// type to the native type of the converter. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } ////// /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ///Gets a value indicating whether this converter can /// convert an object to the given destination type using the context. ////// /// Converts the given object to the converter's native type. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { string strValue = value as string; if (strValue != null) { string text = strValue.Trim(); PropertyInfo[] props = GetProperties(); for (int i = 0; i < props.Length; i++) { PropertyInfo prop = props[i]; if (string.Equals(prop.Name, text, StringComparison.OrdinalIgnoreCase)) { object[] tempIndex = null; return prop.GetValue(null, tempIndex); } } } 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 (value is ImageFormat) { PropertyInfo targetProp = null; PropertyInfo[] props = GetProperties(); foreach(PropertyInfo p in props) { if (p.GetValue(null, null).Equals(value)) { targetProp = p; break; } } if (targetProp != null) { if (destinationType == typeof(string)) { return targetProp.Name; } else if (destinationType == typeof(InstanceDescriptor)) { return new InstanceDescriptor(targetProp, null); } } } return base.ConvertTo(context, culture, value, destinationType); } ////// /// Retrieves the properties for the available image formats. /// private PropertyInfo[] GetProperties() { return typeof(ImageFormat).GetProperties(BindingFlags.Static | BindingFlags.Public); } ////// /// 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 (values == null) { ArrayList list = new ArrayList(); PropertyInfo[] props = GetProperties(); for (int i = 0; i < props.Length; i++) { PropertyInfo prop = props[i]; object[] tempIndex = null; Debug.Assert(prop.GetValue(null, tempIndex) != null, "Property " + prop.Name + " returned NULL"); list.Add(prop.GetValue(null, tempIndex)); } values = new StandardValuesCollection(list.ToArray()); } return values; } ////// /// Determines if this object supports a standard set of values /// that can be picked from a list. /// public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return true; } } } // 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
- HttpHandlersSection.cs
- EndEvent.cs
- ConnectionPointCookie.cs
- input.cs
- RoleBoolean.cs
- UnsafeNativeMethodsMilCoreApi.cs
- XmlLoader.cs
- IgnoreFlushAndCloseStream.cs
- EncoderNLS.cs
- CompiledXpathExpr.cs
- TreeNodeBindingCollection.cs
- Triplet.cs
- ScriptResourceAttribute.cs
- MeshGeometry3D.cs
- XmlHierarchyData.cs
- SortQuery.cs
- LinqDataSourceInsertEventArgs.cs
- ListBindingHelper.cs
- ProjectionPathSegment.cs
- HttpFileCollection.cs
- XmlComplianceUtil.cs
- IPipelineRuntime.cs
- XmlSerializerAssemblyAttribute.cs
- TextContainerHelper.cs
- ComboBoxItem.cs
- HtmlInputReset.cs
- SeekStoryboard.cs
- DataBoundControlHelper.cs
- TypeUsageBuilder.cs
- XPathArrayIterator.cs
- XmlCharacterData.cs
- Soap12ProtocolImporter.cs
- SubstitutionDesigner.cs
- ServiceHttpHandlerFactory.cs
- ToggleButton.cs
- UnsafeNativeMethods.cs
- ExternalDataExchangeService.cs
- Profiler.cs
- RequiredFieldValidator.cs
- EndPoint.cs
- FacetChecker.cs
- TargetInvocationException.cs
- _DynamicWinsockMethods.cs
- AssertSection.cs
- X509RecipientCertificateClientElement.cs
- TypeDescriptor.cs
- WindowsToolbarAsMenu.cs
- NetSectionGroup.cs
- SocketConnection.cs
- ApplicationInterop.cs
- ListMarkerLine.cs
- KeyNotFoundException.cs
- SortedSet.cs
- SHA1CryptoServiceProvider.cs
- LassoSelectionBehavior.cs
- SqlDataSourceStatusEventArgs.cs
- SqlConnectionHelper.cs
- MimeXmlImporter.cs
- NavigationWindow.cs
- PipeConnection.cs
- GradientStop.cs
- Message.cs
- DataSysAttribute.cs
- SmtpNegotiateAuthenticationModule.cs
- RepeatBehavior.cs
- IntSecurity.cs
- AsyncOperationManager.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- TemplatedAdorner.cs
- Ray3DHitTestResult.cs
- SQLString.cs
- SemaphoreSecurity.cs
- SystemIcmpV4Statistics.cs
- LineBreak.cs
- CodeIdentifiers.cs
- SmtpTransport.cs
- XmlWellformedWriter.cs
- IDQuery.cs
- RightsManagementInformation.cs
- TemplateLookupAction.cs
- SafeViewOfFileHandle.cs
- XmlChildEnumerator.cs
- XmlSchemaSimpleContent.cs
- DataListItemCollection.cs
- ArrayWithOffset.cs
- ArrayWithOffset.cs
- QfeChecker.cs
- dsa.cs
- DateTimeFormatInfoScanner.cs
- ZeroOpNode.cs
- Byte.cs
- WindowShowOrOpenTracker.cs
- ValueProviderWrapper.cs
- DeclarativeCatalogPart.cs
- ScrollProperties.cs
- StringDictionary.cs
- WhitespaceRuleReader.cs
- PassportIdentity.cs
- DataGridAutoFormatDialog.cs
- MembershipUser.cs