Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Misc / GDI / WindowsSolidBrush.cs / 1305376 / WindowsSolidBrush.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if [....]_NAMESPACE namespace System.Windows.Forms.Internal #elif DRAWING_NAMESPACE namespace System.Drawing.Internal #else namespace System.Experimental.Gdi #endif { using System; using System.Internal; using System.Runtime.InteropServices; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; using System.Runtime.Versioning; #if [....]_PUBLIC_GRAPHICS_LIBRARY public #else internal #endif sealed class WindowsSolidBrush : WindowsBrush { [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] protected override void CreateBrush() { IntPtr nativeHandle = IntSafeNativeMethods.CreateSolidBrush(ColorTranslator.ToWin32( this.Color)); if(nativeHandle == IntPtr.Zero) // Don't use Debug.Assert, DbgUtil.GetLastErrorStr would always be evaluated. { Debug.Fail("CreateSolidBrush failed : " + DbgUtil.GetLastErrorStr()); } this.NativeHandle = nativeHandle; // sets the handle value in the base class. } [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] public WindowsSolidBrush(DeviceContext dc) : base(dc) { // CreateBrush() on demand. } [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] public WindowsSolidBrush(DeviceContext dc, Color color) : base( dc, color ) { // CreateBrush() on demand. } [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] public override object Clone() { return new WindowsSolidBrush(this.DC, this.Color); } public override string ToString() { return String.Format( CultureInfo.InvariantCulture, "{0}: Color={1}", this.GetType().Name, this.Color ); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HashCodeCombiner.cs
- TextContainerChangedEventArgs.cs
- SpellerError.cs
- ParentQuery.cs
- ToolStripDropDownMenu.cs
- _NtlmClient.cs
- TcpAppDomainProtocolHandler.cs
- XmlILStorageConverter.cs
- DataGridAddNewRow.cs
- XmlUtilWriter.cs
- OrCondition.cs
- CheckBoxPopupAdapter.cs
- recordstatefactory.cs
- SerializationInfo.cs
- NativeMethods.cs
- _RequestLifetimeSetter.cs
- SrgsGrammarCompiler.cs
- RectAnimationBase.cs
- PhysicalFontFamily.cs
- MemberBinding.cs
- GregorianCalendar.cs
- XmlTypeMapping.cs
- Lasso.cs
- _BaseOverlappedAsyncResult.cs
- Wizard.cs
- Expressions.cs
- DbDeleteCommandTree.cs
- ResourceProviderFactory.cs
- PriorityQueue.cs
- ExpressionVisitorHelpers.cs
- ListViewGroupItemCollection.cs
- OleDbRowUpdatingEvent.cs
- AvTraceDetails.cs
- LogPolicy.cs
- Classification.cs
- errorpatternmatcher.cs
- contentDescriptor.cs
- ConsumerConnectionPointCollection.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- RuntimeArgumentHandle.cs
- ProjectionCamera.cs
- DataGridTextColumn.cs
- TableCellsCollectionEditor.cs
- ResourceDescriptionAttribute.cs
- FormViewPagerRow.cs
- InsufficientMemoryException.cs
- ComponentEvent.cs
- StorageMappingFragment.cs
- SessionEndedEventArgs.cs
- PeerIPHelper.cs
- SqlVersion.cs
- QueryableDataSourceEditData.cs
- ChangePassword.cs
- DiffuseMaterial.cs
- KnownTypeDataContractResolver.cs
- MustUnderstandSoapException.cs
- ToolStripLocationCancelEventArgs.cs
- EventPrivateKey.cs
- RectangleConverter.cs
- XPathMessageFilter.cs
- DefaultExpressionVisitor.cs
- FileLogRecord.cs
- AgileSafeNativeMemoryHandle.cs
- cookiecollection.cs
- BitmapEffectInputData.cs
- SrgsSubset.cs
- HyperLinkField.cs
- StateMachineWorkflow.cs
- PerformanceCounterLib.cs
- CompoundFileDeflateTransform.cs
- BitmapScalingModeValidation.cs
- InternalSafeNativeMethods.cs
- VarRefManager.cs
- StringFunctions.cs
- SystemSounds.cs
- DataControlCommands.cs
- IndicShape.cs
- ObservableDictionary.cs
- UpdateException.cs
- TemplateModeChangedEventArgs.cs
- IndexedString.cs
- Substitution.cs
- SessionStateItemCollection.cs
- MarginCollapsingState.cs
- GroupBox.cs
- CqlWriter.cs
- SiteMapNodeItem.cs
- FlowDocument.cs
- EmptyControlCollection.cs
- DataControlExtensions.cs
- HtmlButton.cs
- AssertFilter.cs
- ParseNumbers.cs
- HMACMD5.cs
- NativeCppClassAttribute.cs
- followingsibling.cs
- FlowLayoutPanel.cs
- EmbeddedMailObjectsCollection.cs
- TypeConverterHelper.cs
- SystemDiagnosticsSection.cs