Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CommonUI / System / Drawing / Brush.cs / 1 / Brush.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.ComponentModel; using Microsoft.Win32; using System.Drawing; using System.Drawing.Internal; using System.Globalization; /** * Represent a Brush object */ ////// /// public abstract class Brush : MarshalByRefObject, ICloneable, IDisposable { #if FINALIZATION_WATCH private string allocationSite = Graphics.GetAllocationStack(); #endif // handle to native GDI+ brush object to be used on demand. ////// Classes derrived from this abstract base class define objects used to fill the /// interiors of graphical shapes such as rectangles, ellipses, pies, polygons, and paths. /// ///private IntPtr nativeBrush; /// /// /// When overriden in a derived class, creates /// an exact copy of this public abstract object Clone(); ///. /// /// Sets the native GDI+ brush reference. /// Note: This method is intended to be used by derived classes only! (internal protected doesn't work as in C++). /// protected internal void SetNativeBrush(IntPtr brush) { Debug.Assert( brush != IntPtr.Zero, "WARNING: Assigning null to the GDI+ native brush object."); Debug.Assert( this.nativeBrush == IntPtr.Zero, "WARNING: Initialized GDI+ native brush object being assigned a new value."); this.nativeBrush = brush; } ////// Gets the GDI+ native object reference. Triggers GDI+ obect initialization. /// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] internal IntPtr NativeBrush { get { //Need to comment this line out to allow for checking this.NativePen == IntPtr.Zero. //Debug.Assert(this.nativeBrush != IntPtr.Zero, "this.nativeBrush == null." ); return this.nativeBrush; } } ////// /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ////// Deletes this ///. /// protected virtual void Dispose(bool disposing) { #if FINALIZATION_WATCH if (!disposing && nativeBrush != IntPtr.Zero ) Debug.WriteLine("**********************\nDisposed through finalization:\n" + allocationSite); #endif if (this.nativeBrush != IntPtr.Zero) { try{ #if DEBUG int status = #endif SafeNativeMethods.Gdip.GdipDeleteBrush(new HandleRef(this, this.nativeBrush)); #if DEBUG Debug.Assert(status == SafeNativeMethods.Gdip.Ok, "GDI+ returned an error status: " + status.ToString(CultureInfo.InvariantCulture)); #endif } catch( Exception ex ){ if( ClientUtils.IsSecurityOrCriticalException( ex ) ) { throw; } Debug.Fail( "Exception thrown during Dispose: " + ex.ToString() ); } finally{ this.nativeBrush = IntPtr.Zero; } } } /** * Object cleanup */ /// /// /// ~Brush() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Releases memory allocated for this ///. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.ComponentModel; using Microsoft.Win32; using System.Drawing; using System.Drawing.Internal; using System.Globalization; /** * Represent a Brush object */ ////// /// public abstract class Brush : MarshalByRefObject, ICloneable, IDisposable { #if FINALIZATION_WATCH private string allocationSite = Graphics.GetAllocationStack(); #endif // handle to native GDI+ brush object to be used on demand. ////// Classes derrived from this abstract base class define objects used to fill the /// interiors of graphical shapes such as rectangles, ellipses, pies, polygons, and paths. /// ///private IntPtr nativeBrush; /// /// /// When overriden in a derived class, creates /// an exact copy of this public abstract object Clone(); ///. /// /// Sets the native GDI+ brush reference. /// Note: This method is intended to be used by derived classes only! (internal protected doesn't work as in C++). /// protected internal void SetNativeBrush(IntPtr brush) { Debug.Assert( brush != IntPtr.Zero, "WARNING: Assigning null to the GDI+ native brush object."); Debug.Assert( this.nativeBrush == IntPtr.Zero, "WARNING: Initialized GDI+ native brush object being assigned a new value."); this.nativeBrush = brush; } ////// Gets the GDI+ native object reference. Triggers GDI+ obect initialization. /// [Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] internal IntPtr NativeBrush { get { //Need to comment this line out to allow for checking this.NativePen == IntPtr.Zero. //Debug.Assert(this.nativeBrush != IntPtr.Zero, "this.nativeBrush == null." ); return this.nativeBrush; } } ////// /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ////// Deletes this ///. /// protected virtual void Dispose(bool disposing) { #if FINALIZATION_WATCH if (!disposing && nativeBrush != IntPtr.Zero ) Debug.WriteLine("**********************\nDisposed through finalization:\n" + allocationSite); #endif if (this.nativeBrush != IntPtr.Zero) { try{ #if DEBUG int status = #endif SafeNativeMethods.Gdip.GdipDeleteBrush(new HandleRef(this, this.nativeBrush)); #if DEBUG Debug.Assert(status == SafeNativeMethods.Gdip.Ok, "GDI+ returned an error status: " + status.ToString(CultureInfo.InvariantCulture)); #endif } catch( Exception ex ){ if( ClientUtils.IsSecurityOrCriticalException( ex ) ) { throw; } Debug.Fail( "Exception thrown during Dispose: " + ex.ToString() ); } finally{ this.nativeBrush = IntPtr.Zero; } } } /** * Object cleanup */ /// /// /// ~Brush() { Dispose(false); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Releases memory allocated for this ///. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CssTextWriter.cs
- DynamicActivity.cs
- ButtonBaseAdapter.cs
- HtmlSelect.cs
- XmlSequenceWriter.cs
- BoundColumn.cs
- ListViewGroup.cs
- GeometryGroup.cs
- ComponentResourceManager.cs
- InstanceDescriptor.cs
- DataGridrowEditEndingEventArgs.cs
- ProcessThreadCollection.cs
- MergeExecutor.cs
- DiscoveryExceptionDictionary.cs
- XmlSchemaProviderAttribute.cs
- WindowsEditBox.cs
- TraversalRequest.cs
- VisualBrush.cs
- TreeNodeSelectionProcessor.cs
- InitiatorSessionSymmetricTransportSecurityProtocol.cs
- ConnectionManagementElement.cs
- XmlnsDefinitionAttribute.cs
- WebReferenceOptions.cs
- UserControlBuildProvider.cs
- XmlIgnoreAttribute.cs
- XmlSchemaCompilationSettings.cs
- SerializationHelper.cs
- DBConcurrencyException.cs
- XmlTextReader.cs
- Filter.cs
- CodePrimitiveExpression.cs
- UmAlQuraCalendar.cs
- GeometryHitTestResult.cs
- EditCommandColumn.cs
- ZipIOCentralDirectoryBlock.cs
- Boolean.cs
- Soap.cs
- SafeHGlobalHandleCritical.cs
- CollectionEditVerbManager.cs
- DbExpressionBuilder.cs
- DataServiceStreamResponse.cs
- AutoScrollHelper.cs
- SocketElement.cs
- ErrorView.xaml.cs
- FixedSOMLineCollection.cs
- NetworkStream.cs
- PropertySegmentSerializer.cs
- MenuAdapter.cs
- RefreshPropertiesAttribute.cs
- DetailsViewActionList.cs
- AssemblyResolver.cs
- CellQuery.cs
- BinaryObjectWriter.cs
- ExpressionBuilderCollection.cs
- ApplicationProxyInternal.cs
- TextRange.cs
- Aggregates.cs
- ThemeDirectoryCompiler.cs
- CacheChildrenQuery.cs
- ListManagerBindingsCollection.cs
- Certificate.cs
- CachedRequestParams.cs
- RadialGradientBrush.cs
- HuffCodec.cs
- SessionStateItemCollection.cs
- DataGridViewRowStateChangedEventArgs.cs
- ButtonPopupAdapter.cs
- _ListenerAsyncResult.cs
- MailDefinition.cs
- DataGridViewElement.cs
- HealthMonitoringSection.cs
- InvalidCastException.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ChannelCacheDefaults.cs
- XmlAttributeProperties.cs
- ListItemViewAttribute.cs
- GeometryGroup.cs
- NullableFloatSumAggregationOperator.cs
- NavigationWindowAutomationPeer.cs
- mda.cs
- CmsInterop.cs
- ConfigurationHandlersInstallComponent.cs
- HTTPNotFoundHandler.cs
- LineInfo.cs
- CurrentChangedEventManager.cs
- xdrvalidator.cs
- SortFieldComparer.cs
- XmlSchemaImporter.cs
- RtfFormatStack.cs
- SqlTransaction.cs
- SortKey.cs
- FrameworkTextComposition.cs
- ItemType.cs
- CapabilitiesAssignment.cs
- KernelTypeValidation.cs
- OracleParameter.cs
- SspiHelper.cs
- Permission.cs
- ConfigurationCollectionAttribute.cs
- VerificationException.cs