Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SchemaComplexType.cs
- SizeF.cs
- HotSpot.cs
- TraceListener.cs
- MediaPlayer.cs
- PageRanges.cs
- AsyncResult.cs
- ClientTargetCollection.cs
- ImageSource.cs
- WsatConfiguration.cs
- ColumnWidthChangedEvent.cs
- TextBox.cs
- ExcCanonicalXml.cs
- IgnoreSectionHandler.cs
- RegistryConfigurationProvider.cs
- XpsFixedPageReaderWriter.cs
- CapabilitiesAssignment.cs
- XmlDataImplementation.cs
- XamlSerializationHelper.cs
- Formatter.cs
- DocumentNUp.cs
- PeerObject.cs
- ProtocolsConfigurationHandler.cs
- IconBitmapDecoder.cs
- MethodBuilderInstantiation.cs
- DesignerAttributeInfo.cs
- EntityDataSourceViewSchema.cs
- DesignerVerbCollection.cs
- MenuAdapter.cs
- WebAdminConfigurationHelper.cs
- PlainXmlDeserializer.cs
- CultureSpecificCharacterBufferRange.cs
- SessionKeyExpiredException.cs
- SendKeys.cs
- ObjectParameterCollection.cs
- DataGridViewCellLinkedList.cs
- LinkAreaEditor.cs
- GenericQueueSurrogate.cs
- ListItemCollection.cs
- QuaternionRotation3D.cs
- VarInfo.cs
- DataGridViewColumnStateChangedEventArgs.cs
- UrlPropertyAttribute.cs
- EnumBuilder.cs
- DbParameterHelper.cs
- HelpInfo.cs
- EventInfo.cs
- EntitySet.cs
- QilGenerator.cs
- SqlDependency.cs
- RecognizedWordUnit.cs
- CachedFontFamily.cs
- JavaScriptObjectDeserializer.cs
- CriticalFinalizerObject.cs
- SqlConnectionPoolProviderInfo.cs
- FormsAuthenticationEventArgs.cs
- SQLBoolean.cs
- TypedReference.cs
- GeometryCombineModeValidation.cs
- QilReplaceVisitor.cs
- CompletionProxy.cs
- TimeoutValidationAttribute.cs
- Lease.cs
- ChangePassword.cs
- DataGridViewSelectedCellCollection.cs
- RegexTypeEditor.cs
- CounterSample.cs
- RelationshipEntry.cs
- CookielessHelper.cs
- TripleDES.cs
- SqlUDTStorage.cs
- XmlException.cs
- ByteViewer.cs
- AutomationPatternInfo.cs
- DataSourceXmlTextReader.cs
- TextShapeableCharacters.cs
- XmlNotation.cs
- XmlName.cs
- shaper.cs
- SecUtil.cs
- RawTextInputReport.cs
- RedistVersionInfo.cs
- HelloMessage11.cs
- SupportingTokenSecurityTokenResolver.cs
- UInt32.cs
- TypeReference.cs
- _ProxyChain.cs
- HyperLinkStyle.cs
- SqlLiftIndependentRowExpressions.cs
- ZipIOLocalFileBlock.cs
- ServiceModelActivationSectionGroup.cs
- ArgumentDesigner.xaml.cs
- AbandonedMutexException.cs
- WeakRefEnumerator.cs
- NamespaceCollection.cs
- InputEventArgs.cs
- XPathNode.cs
- MessageQueuePermissionEntryCollection.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- TextLineResult.cs