Code:
/ FX-1434 / FX-1434 / 1.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
- SafeMILHandle.cs
- SerialStream.cs
- SimpleApplicationHost.cs
- BaseUriHelper.cs
- HttpCacheVaryByContentEncodings.cs
- Int16Converter.cs
- KeySpline.cs
- PersistChildrenAttribute.cs
- diagnosticsswitches.cs
- EventMetadata.cs
- WorkflowDispatchContext.cs
- PowerModeChangedEventArgs.cs
- CollectionAdapters.cs
- DataObjectMethodAttribute.cs
- InputReport.cs
- FileSystemEventArgs.cs
- PermissionListSet.cs
- PropertyChange.cs
- XmlCharCheckingWriter.cs
- EmptyElement.cs
- ValueUtilsSmi.cs
- NumericUpDown.cs
- EditingMode.cs
- TagPrefixCollection.cs
- JsonReaderWriterFactory.cs
- HostedElements.cs
- RoutedEventArgs.cs
- SqlMethodTransformer.cs
- CircleEase.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- DefaultSection.cs
- CompilationUnit.cs
- RuleSet.cs
- EncoderBestFitFallback.cs
- DesignerCalendarAdapter.cs
- Util.cs
- Typeface.cs
- EdmEntityTypeAttribute.cs
- InkSerializer.cs
- SqlCacheDependency.cs
- ToolStripOverflowButton.cs
- TaskScheduler.cs
- ConversionHelper.cs
- AVElementHelper.cs
- VideoDrawing.cs
- Stroke2.cs
- ImageAutomationPeer.cs
- SchemaHelper.cs
- SafeRightsManagementQueryHandle.cs
- DragDrop.cs
- COM2DataTypeToManagedDataTypeConverter.cs
- InfoCardSymmetricAlgorithm.cs
- XPathDocumentIterator.cs
- MobileUserControlDesigner.cs
- XmlDictionaryString.cs
- PolicyLevel.cs
- MouseEvent.cs
- XPathPatternParser.cs
- Util.cs
- PointValueSerializer.cs
- ColorMap.cs
- EncoderFallback.cs
- PriorityQueue.cs
- MarkupExtensionSerializer.cs
- TableLayoutPanelCellPosition.cs
- Scalars.cs
- TransportConfigurationTypeElement.cs
- IndexingContentUnit.cs
- ListItemParagraph.cs
- Activation.cs
- IntSecurity.cs
- AQNBuilder.cs
- Form.cs
- NativeObjectSecurity.cs
- SizeIndependentAnimationStorage.cs
- SliderAutomationPeer.cs
- SimpleFieldTemplateUserControl.cs
- XmlDataProvider.cs
- CompositeKey.cs
- SecurityCapabilities.cs
- ReadOnlyDataSource.cs
- FilteredReadOnlyMetadataCollection.cs
- EdmTypeAttribute.cs
- XslVisitor.cs
- SqlInternalConnectionSmi.cs
- ServiceManager.cs
- BindingOperations.cs
- SecurityDescriptor.cs
- CheckBoxBaseAdapter.cs
- StringHandle.cs
- ConstraintConverter.cs
- TimerElapsedEvenArgs.cs
- NamedPipeTransportManager.cs
- ButtonBaseAdapter.cs
- ProjectionCamera.cs
- DrawingContext.cs
- DodSequenceMerge.cs
- MaterialGroup.cs
- EventItfInfo.cs