Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / ColorMap.cs / 1 / ColorMap.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * ColorMap.cs * * Abstract: * * Native GDI+ ColorMap structure. * * Revision History: * * 1/25/2k [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Imaging { using System.Diagnostics; using System; using System.Drawing; ////// /// Defines a map for converting colors. /// public sealed class ColorMap { Color oldColor; Color newColor; ////// /// public ColorMap() { oldColor = new Color(); newColor = new Color(); } ////// Initializes a new instance of the ///class. /// /// /// public Color OldColor { get { return oldColor; } set { oldColor = value; } } ////// Specifies the existing ///to be /// converted. /// /// /// public Color NewColor { get { return newColor; } set { newColor = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Specifes the new ///to which to convert. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BinaryOperationBinder.cs
- FloaterParagraph.cs
- DeviceOverridableAttribute.cs
- OrderingQueryOperator.cs
- SqlBulkCopy.cs
- util.cs
- ValueTypeFixupInfo.cs
- DataRelation.cs
- CodeGotoStatement.cs
- AutomationProperties.cs
- GridViewRowPresenterBase.cs
- URIFormatException.cs
- RuleRefElement.cs
- VariableExpressionConverter.cs
- CapabilitiesAssignment.cs
- Int64Animation.cs
- TranslateTransform3D.cs
- ObjectCloneHelper.cs
- WebMethodAttribute.cs
- SimpleTypeResolver.cs
- RemotingServices.cs
- SQLInt16.cs
- ComponentCommands.cs
- XmlNamespaceDeclarationsAttribute.cs
- Brush.cs
- EmptyEnumerator.cs
- RangeValidator.cs
- TextComposition.cs
- DoubleAnimationUsingPath.cs
- Ray3DHitTestResult.cs
- Pool.cs
- ObjectViewFactory.cs
- HttpHandlerAction.cs
- Font.cs
- DetailsViewDeleteEventArgs.cs
- WebControl.cs
- StrongNameIdentityPermission.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- OdbcConnectionOpen.cs
- PagerStyle.cs
- NameValueConfigurationElement.cs
- XD.cs
- UnionCqlBlock.cs
- AsymmetricAlgorithm.cs
- GetPageNumberCompletedEventArgs.cs
- ThemeInfoAttribute.cs
- ContentPropertyAttribute.cs
- EncoderParameter.cs
- ExceptionHelpers.cs
- XmlDownloadManager.cs
- ClientSideQueueItem.cs
- BlockCollection.cs
- IgnoreFileBuildProvider.cs
- DurableDispatcherAddressingFault.cs
- DbBuffer.cs
- ListView.cs
- XmlQualifiedName.cs
- MenuItemBinding.cs
- ResourceSet.cs
- Form.cs
- AttachedAnnotationChangedEventArgs.cs
- ResourcesBuildProvider.cs
- MailAddressCollection.cs
- WebPartCloseVerb.cs
- SQLDecimal.cs
- CompModSwitches.cs
- CheckBoxBaseAdapter.cs
- HashHelper.cs
- LogRestartAreaEnumerator.cs
- TypeDescriptionProvider.cs
- SmtpTransport.cs
- Dump.cs
- ActivityCodeGenerator.cs
- xmlformatgeneratorstatics.cs
- Roles.cs
- HwndSourceKeyboardInputSite.cs
- MemoryMappedViewStream.cs
- DataSysAttribute.cs
- precedingquery.cs
- Dynamic.cs
- SqlDataSourceStatusEventArgs.cs
- Queue.cs
- OperationInvokerBehavior.cs
- WS2007FederationHttpBinding.cs
- SR.cs
- SqlProvider.cs
- ExpressionBindings.cs
- ASCIIEncoding.cs
- Vector3DValueSerializer.cs
- dataSvcMapFileLoader.cs
- ToolBarPanel.cs
- SqlDesignerDataSourceView.cs
- Predicate.cs
- PathFigureCollection.cs
- WebPartHeaderCloseVerb.cs
- HandleCollector.cs
- SystemDropShadowChrome.cs
- StrokeNodeOperations2.cs
- Splitter.cs
- SafeNativeMemoryHandle.cs