Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / VerticalAlignConverter.cs / 1 / VerticalAlignConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Globalization; internal class VerticalAlignConverter : EnumConverter { static string[] stringValues = new String[(int) VerticalAlign.Bottom + 1]; static VerticalAlignConverter () { stringValues[(int) VerticalAlign.NotSet] = "NotSet"; stringValues[(int) VerticalAlign.Top] = "Top"; stringValues[(int) VerticalAlign.Middle] = "Middle"; stringValues[(int) VerticalAlign.Bottom] = "Bottom"; } // this constructor needs to be public despite the fact that it's in an internal // class so it can be created by Activator.CreateInstance. public VerticalAlignConverter () : base(typeof(VerticalAlign)) {} public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } else { return base.CanConvertFrom(context, sourceType); } } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value == null) return null; if (value is string) { string textValue = ((string)value).Trim(); if (textValue.Length == 0) return VerticalAlign.NotSet; switch (textValue) { case "NotSet": return VerticalAlign.NotSet; case "Top": return VerticalAlign.Top; case "Middle": return VerticalAlign.Middle; case "Bottom": return VerticalAlign.Bottom; } } return base.ConvertFrom(context, culture, value); } public override bool CanConvertTo(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertTo(context, sourceType); } public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string) && ((int) value <= (int)VerticalAlign.Bottom)) { return stringValues[(int) value]; } return base.ConvertTo(context, culture, value, destinationType); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SequenceDesigner.xaml.cs
- WorkflowRuntimeService.cs
- MessageQueueCriteria.cs
- UserUseLicenseDictionaryLoader.cs
- ClientApiGenerator.cs
- RemoteAsymmetricSignatureFormatter.cs
- SoapElementAttribute.cs
- SqlCacheDependencySection.cs
- OpenTypeCommon.cs
- RadioButton.cs
- RequestResizeEvent.cs
- ForeignKeyConstraint.cs
- SplayTreeNode.cs
- CounterCreationData.cs
- QilLiteral.cs
- WebContext.cs
- DefaultPropertyAttribute.cs
- IISUnsafeMethods.cs
- EntityDataSourceDataSelectionPanel.designer.cs
- ParenthesizePropertyNameAttribute.cs
- DataTableReader.cs
- FixedHyperLink.cs
- XmlTextReaderImplHelpers.cs
- JpegBitmapEncoder.cs
- MenuAutomationPeer.cs
- wgx_sdk_version.cs
- BitmapSizeOptions.cs
- UInt64.cs
- MessageLoggingElement.cs
- AsymmetricKeyExchangeFormatter.cs
- ProcessDesigner.cs
- BasicViewGenerator.cs
- TextElementEnumerator.cs
- ReadOnlyPropertyMetadata.cs
- NativeActivityMetadata.cs
- DelegatedStream.cs
- CachingHintValidation.cs
- SQLInt32Storage.cs
- NavigatingCancelEventArgs.cs
- AttributeParameterInfo.cs
- SwitchElementsCollection.cs
- FunctionOverloadResolver.cs
- ExeContext.cs
- XmlDictionaryString.cs
- Size3DConverter.cs
- SecurityState.cs
- ReadOnlyObservableCollection.cs
- CmsInterop.cs
- TreeNodeStyle.cs
- PathSegmentCollection.cs
- Geometry3D.cs
- XmlHelper.cs
- LinqDataSourceView.cs
- SmtpException.cs
- InputLanguage.cs
- ArgumentOutOfRangeException.cs
- HttpModuleCollection.cs
- DataKey.cs
- Listbox.cs
- DataColumn.cs
- ApplicationHost.cs
- Permission.cs
- DataGridView.cs
- RawStylusSystemGestureInputReport.cs
- SingleStorage.cs
- ComplexType.cs
- DynamicControlParameter.cs
- EarlyBoundInfo.cs
- FormatConvertedBitmap.cs
- NativeCompoundFileAPIs.cs
- XmlException.cs
- FixedSOMTable.cs
- SettingsPropertyCollection.cs
- SocketStream.cs
- CompositeDataBoundControl.cs
- EntityClientCacheKey.cs
- ValidationUtility.cs
- TrackingProfileManager.cs
- UnsafeNativeMethods.cs
- DataGridTextBox.cs
- Coordinator.cs
- UnsafeNetInfoNativeMethods.cs
- Quaternion.cs
- printdlgexmarshaler.cs
- DetailsViewUpdatedEventArgs.cs
- WebPartHelpVerb.cs
- DesignerAttribute.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- DesignerRegionMouseEventArgs.cs
- indexingfiltermarshaler.cs
- DataServiceStreamResponse.cs
- localization.cs
- X509Utils.cs
- ProjectionCamera.cs
- InArgument.cs
- Internal.cs
- EnlistmentTraceIdentifier.cs
- XmlRawWriter.cs
- DynamicValidatorEventArgs.cs
- TreeNode.cs