Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / OpacityConverter.cs / 1 / OpacityConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; ////// /// OpacityConverter is a class that can be used to convert /// opacity values from one data type to another. Access this /// class through the TypeDescriptor. /// public class OpacityConverter : TypeConverter { ////// /// 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); } ////// /// Converts the given object to the converter's native type. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Replace('%', ' ').Trim(); double val = Double.Parse(text, CultureInfo.CurrentCulture); int indexOfPercent = ((string)value).IndexOf("%"); if (indexOfPercent > 0 && (val >= 0.0 && val <= 1.0)) { val /= 100.0; text = val.ToString(CultureInfo.CurrentCulture); } double percent = 1.0; try { percent = (double)TypeDescriptor.GetConverter(typeof(double)).ConvertFrom(context, culture, text); // assume they meant a percentage if it is > 1.0, else // they actually typed the correct double... // if (percent > 1.0) { percent /= 100.0; } } catch (FormatException e) { throw new FormatException(SR.GetString(SR.InvalidBoundArgument, "Opacity", text, "0%", "100%"), e); } // Now check to see if it is within our bounds. // if (percent < 0.0 || percent > 1.0) { throw new FormatException(SR.GetString(SR.InvalidBoundArgument, "Opacity", text, "0%", "100%")); } return percent; } 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)) { double val = (double)value; int perc = (int)(val * 100.0); return perc.ToString(CultureInfo.CurrentCulture) + "%"; } 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 System.Runtime.Serialization.Formatters; using System.Runtime.Remoting; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; ////// /// OpacityConverter is a class that can be used to convert /// opacity values from one data type to another. Access this /// class through the TypeDescriptor. /// public class OpacityConverter : TypeConverter { ////// /// 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); } ////// /// Converts the given object to the converter's native type. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Replace('%', ' ').Trim(); double val = Double.Parse(text, CultureInfo.CurrentCulture); int indexOfPercent = ((string)value).IndexOf("%"); if (indexOfPercent > 0 && (val >= 0.0 && val <= 1.0)) { val /= 100.0; text = val.ToString(CultureInfo.CurrentCulture); } double percent = 1.0; try { percent = (double)TypeDescriptor.GetConverter(typeof(double)).ConvertFrom(context, culture, text); // assume they meant a percentage if it is > 1.0, else // they actually typed the correct double... // if (percent > 1.0) { percent /= 100.0; } } catch (FormatException e) { throw new FormatException(SR.GetString(SR.InvalidBoundArgument, "Opacity", text, "0%", "100%"), e); } // Now check to see if it is within our bounds. // if (percent < 0.0 || percent > 1.0) { throw new FormatException(SR.GetString(SR.InvalidBoundArgument, "Opacity", text, "0%", "100%")); } return percent; } 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)) { double val = (double)value; int perc = (int)(val * 100.0); return perc.ToString(CultureInfo.CurrentCulture) + "%"; } 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
- DynamicMetaObjectBinder.cs
- MemberDomainMap.cs
- MsmqIntegrationOutputChannel.cs
- InvalidDataContractException.cs
- CodeTypeReferenceCollection.cs
- SurrogateSelector.cs
- Control.cs
- PartialClassGenerationTaskInternal.cs
- XmlEncodedRawTextWriter.cs
- InstanceNameConverter.cs
- PixelFormats.cs
- CultureInfoConverter.cs
- ConnectionStringsExpressionBuilder.cs
- XmlAttributeOverrides.cs
- DLinqAssociationProvider.cs
- Validator.cs
- ExcCanonicalXml.cs
- XmlSchemaParticle.cs
- LocationUpdates.cs
- _NestedMultipleAsyncResult.cs
- ProtocolElementCollection.cs
- XmlILModule.cs
- RuleRefElement.cs
- ErrorFormatter.cs
- TextParagraphProperties.cs
- TableLayoutSettingsTypeConverter.cs
- System.Data_BID.cs
- ListenerAdaptersInstallComponent.cs
- MetaModel.cs
- KnownTypes.cs
- SecurityIdentifierConverter.cs
- XmlSchemaComplexContentExtension.cs
- DbBuffer.cs
- UntypedNullExpression.cs
- ContentPathSegment.cs
- remotingproxy.cs
- TransformerConfigurationWizardBase.cs
- Geometry3D.cs
- SecurityTokenException.cs
- SqlWebEventProvider.cs
- InvalidateEvent.cs
- AsymmetricAlgorithm.cs
- DeferredElementTreeState.cs
- ExtensionsSection.cs
- SerializableAttribute.cs
- CodeNamespaceImportCollection.cs
- SafeNativeMethodsMilCoreApi.cs
- EventSetter.cs
- HttpListener.cs
- ProfileManager.cs
- BooleanConverter.cs
- ListViewInsertEventArgs.cs
- Pen.cs
- unsafenativemethodstextservices.cs
- CqlParserHelpers.cs
- CurrentChangingEventManager.cs
- ListBindingHelper.cs
- EntityDataSourceEntitySetNameItem.cs
- CachingHintValidation.cs
- XmlNamespaceMappingCollection.cs
- HttpCachePolicyElement.cs
- DataSourceControlBuilder.cs
- SystemDiagnosticsSection.cs
- RtType.cs
- ObjectDataSourceChooseTypePanel.cs
- Int32Rect.cs
- ObjectManager.cs
- ExtendedPropertyCollection.cs
- ObjectListField.cs
- WinEventWrap.cs
- ConfigXmlDocument.cs
- ScriptIgnoreAttribute.cs
- GlobalItem.cs
- CustomValidator.cs
- SignedInfo.cs
- GC.cs
- DbDataAdapter.cs
- DocumentOrderComparer.cs
- PackageRelationship.cs
- VersionPair.cs
- DataGridAutomationPeer.cs
- X509CertificateEndpointIdentity.cs
- PropertyGroupDescription.cs
- CacheChildrenQuery.cs
- validationstate.cs
- CorePropertiesFilter.cs
- DataGridViewComboBoxColumn.cs
- XamlSerializerUtil.cs
- AnnotationMap.cs
- RemoteWebConfigurationHost.cs
- LowerCaseStringConverter.cs
- ClockController.cs
- DataGridViewTextBoxEditingControl.cs
- TextBoxBase.cs
- WorkflowNamespace.cs
- EncoderFallback.cs
- Size3DConverter.cs
- ProfileServiceManager.cs
- UnsafeNativeMethods.cs
- WorkflowRuntimeServiceElementCollection.cs