Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / Util / ColorComboBox.cs / 1 / ColorComboBox.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // ColorComboBox.cs // // 12/22/98: Created: [....] // namespace System.Web.UI.Design.Util { using System.Runtime.Serialization.Formatters; using System.Diagnostics; using System; using Microsoft.Win32; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; using System.Globalization; ////// /// Standard combobox with standard sixteen colors in dropdown and a Color /// property /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] internal sealed class ColorComboBox : ComboBox { private static readonly string[] COLOR_VALUES = new string[] { "Aqua", "Black", "Blue", "Fuchsia", "Gray", "Green", "Lime", "Maroon", "Navy", "Olive", "Purple", "Red", "Silver", "Teal", "White", "Yellow" }; ////// /// Creates a new ColorComboBox /// public ColorComboBox() : base() { } ////// /// public string Color { get { int index = SelectedIndex; if (index != -1) return COLOR_VALUES[index]; else return Text.Trim(); } set { SelectedIndex = -1; Text = String.Empty; if (value == null) { return; } string temp = value.Trim(); if (temp.Length != 0) { for (int i = 0; i < COLOR_VALUES.Length; i++) { if (String.Compare(COLOR_VALUES[i], temp, StringComparison.OrdinalIgnoreCase) == 0) { temp = COLOR_VALUES[i]; break; } } this.Text = temp; } } } ////// /// protected override void OnHandleCreated(EventArgs e) { base.OnHandleCreated(e); if (!DesignMode && !RecreatingHandle) { Items.Clear(); Items.AddRange(COLOR_VALUES); } } } } // 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
- SendingRequestEventArgs.cs
- LocalBuilder.cs
- FrugalList.cs
- EntityProxyFactory.cs
- TextWriter.cs
- IconBitmapDecoder.cs
- WebPartCloseVerb.cs
- EdgeModeValidation.cs
- Rule.cs
- ScrollItemProviderWrapper.cs
- _AuthenticationState.cs
- Brush.cs
- ActiveDocumentEvent.cs
- Column.cs
- Utils.cs
- AnimatedTypeHelpers.cs
- EntityDataSourceUtil.cs
- OleServicesContext.cs
- util.cs
- sitestring.cs
- Win32.cs
- SecurityKeyType.cs
- WindowsListViewScroll.cs
- GridViewActionList.cs
- DataGridViewTopRowAccessibleObject.cs
- RouteItem.cs
- SatelliteContractVersionAttribute.cs
- Merger.cs
- ComponentRenameEvent.cs
- GeneralTransformCollection.cs
- SHA1.cs
- IUnknownConstantAttribute.cs
- ReceiveSecurityHeaderElementManager.cs
- TreeViewEvent.cs
- PointLightBase.cs
- DatePickerAutomationPeer.cs
- AdCreatedEventArgs.cs
- XmlNamespaceManager.cs
- SaveFileDialog.cs
- SafeNativeMethods.cs
- ButtonColumn.cs
- DataObjectFieldAttribute.cs
- ThousandthOfEmRealPoints.cs
- HeaderedContentControl.cs
- NativeStructs.cs
- CacheManager.cs
- StickyNoteAnnotations.cs
- RotationValidation.cs
- EventWaitHandle.cs
- RuntimeCompatibilityAttribute.cs
- XmlReflectionImporter.cs
- DoubleAnimationBase.cs
- WebPartHeaderCloseVerb.cs
- NativeMethods.cs
- Compiler.cs
- IndexedGlyphRun.cs
- ListBoxItem.cs
- DataGridViewRowConverter.cs
- BaseDataList.cs
- PropagatorResult.cs
- DBPropSet.cs
- HitTestWithPointDrawingContextWalker.cs
- XPathPatternBuilder.cs
- ChangeConflicts.cs
- FontStretchConverter.cs
- DesignerActionItem.cs
- Parameter.cs
- ConstraintCollection.cs
- Size3D.cs
- LocalizationComments.cs
- XpsFixedDocumentReaderWriter.cs
- ComNativeDescriptor.cs
- PageHandlerFactory.cs
- AnimationStorage.cs
- XPathAncestorIterator.cs
- BaseParagraph.cs
- WebResourceAttribute.cs
- StylusCollection.cs
- ConnectionPoint.cs
- RenamedEventArgs.cs
- WebPartManagerInternals.cs
- ParameterExpression.cs
- WindowsSlider.cs
- TextElementCollection.cs
- StubHelpers.cs
- OracleLob.cs
- SelectionProcessor.cs
- DeferredTextReference.cs
- PartialCachingControl.cs
- EntityParameterCollection.cs
- EdmConstants.cs
- Misc.cs
- XPathChildIterator.cs
- DbDeleteCommandTree.cs
- EditorPartChrome.cs
- ProviderIncompatibleException.cs
- SettingsProperty.cs
- Site.cs
- ZipIOModeEnforcingStream.cs
- MenuTracker.cs