Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Misc / GDI / WindowsSolidBrush.cs / 1 / WindowsSolidBrush.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if WINFORMS_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; #if WINFORMS_PUBLIC_GRAPHICS_LIBRARY public #else internal #endif sealed class WindowsSolidBrush : WindowsBrush { 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. } public WindowsSolidBrush(DeviceContext dc) : base(dc) { // CreateBrush() on demand. } public WindowsSolidBrush(DeviceContext dc, Color color) : base( dc, color ) { // CreateBrush() on demand. } 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EntityStoreSchemaFilterEntry.cs
- FusionWrap.cs
- SynchronizedDispatch.cs
- PlacementWorkspace.cs
- DbCommandDefinition.cs
- PerformanceCounterPermission.cs
- RedistVersionInfo.cs
- PresentationTraceSources.cs
- XmlSchemaObject.cs
- Rotation3DAnimationUsingKeyFrames.cs
- ImageIndexConverter.cs
- HierarchicalDataSourceControl.cs
- CodeValidator.cs
- CacheRequest.cs
- Application.cs
- GenericWebPart.cs
- WebPartsSection.cs
- DateTimeOffsetStorage.cs
- IPEndPoint.cs
- DrawingBrush.cs
- LabelLiteral.cs
- ExpressionPrefixAttribute.cs
- TextTreeUndo.cs
- ProviderSettingsCollection.cs
- SimpleHandlerFactory.cs
- MultiViewDesigner.cs
- RedistVersionInfo.cs
- documentsequencetextcontainer.cs
- wgx_sdk_version.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- CompModHelpers.cs
- DataServiceHostFactory.cs
- RegexGroupCollection.cs
- TextRangeProviderWrapper.cs
- DataGridClipboardCellContent.cs
- ToolStripContentPanel.cs
- ZipIOLocalFileDataDescriptor.cs
- IndexedString.cs
- AuthenticationService.cs
- FontFamily.cs
- HostExecutionContextManager.cs
- InternalsVisibleToAttribute.cs
- PointUtil.cs
- CommandDesigner.cs
- EntityTypeBase.cs
- PowerEase.cs
- DataTableCollection.cs
- BitmapPalette.cs
- FragmentNavigationEventArgs.cs
- CaseExpr.cs
- EntryPointNotFoundException.cs
- BitmapSource.cs
- DoubleCollection.cs
- WebPartDeleteVerb.cs
- Label.cs
- InputBinding.cs
- Stack.cs
- DataPager.cs
- XmlSchemaSimpleType.cs
- XmlChildNodes.cs
- EdmMember.cs
- ReliableMessagingVersion.cs
- WebPartUtil.cs
- ToolStripContentPanel.cs
- TableLayoutPanelDesigner.cs
- SqlException.cs
- MenuAdapter.cs
- TimeEnumHelper.cs
- CurrentTimeZone.cs
- FrugalMap.cs
- HttpFileCollection.cs
- RepeaterItem.cs
- Pens.cs
- MsmqBindingBase.cs
- HttpListenerElement.cs
- DropTarget.cs
- DuplicateWaitObjectException.cs
- WorkflowClientDeliverMessageWrapper.cs
- IsolationInterop.cs
- CompoundFileStreamReference.cs
- XmlObjectSerializer.cs
- MulticastOption.cs
- InstanceDataCollection.cs
- TdsValueSetter.cs
- InheritanceContextChangedEventManager.cs
- RSAPKCS1SignatureFormatter.cs
- DataServiceProcessingPipelineEventArgs.cs
- HttpListenerPrefixCollection.cs
- BufferBuilder.cs
- CanExecuteRoutedEventArgs.cs
- HMACSHA256.cs
- GridPattern.cs
- CacheEntry.cs
- ByteKeyFrameCollection.cs
- AVElementHelper.cs
- FatalException.cs
- PrinterSettings.cs
- ProcessHostConfigUtils.cs
- CompositeDataBoundControl.cs
- DataChangedEventManager.cs