Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CommonUI / System / Drawing / Brush.cs / 2 / 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
- followingquery.cs
- PublisherMembershipCondition.cs
- ScriptIgnoreAttribute.cs
- _SSPISessionCache.cs
- StringFreezingAttribute.cs
- DataBindingHandlerAttribute.cs
- SmiMetaData.cs
- FormViewUpdateEventArgs.cs
- HitTestFilterBehavior.cs
- CommandLineParser.cs
- GlyphsSerializer.cs
- AnnotationComponentManager.cs
- TextEffectCollection.cs
- HelpPage.cs
- DrawListViewSubItemEventArgs.cs
- TrimSurroundingWhitespaceAttribute.cs
- SortedDictionary.cs
- ReadOnlyCollection.cs
- RegexRunnerFactory.cs
- SqlParameterizer.cs
- IteratorFilter.cs
- RepeaterCommandEventArgs.cs
- Rfc2898DeriveBytes.cs
- OverrideMode.cs
- XmlSerializationGeneratedCode.cs
- CheckBoxList.cs
- SqlDataAdapter.cs
- HeaderCollection.cs
- BinHexEncoder.cs
- LinearKeyFrames.cs
- LicenseContext.cs
- DataServiceOperationContext.cs
- SqlConnectionString.cs
- PreDigestedSignedInfo.cs
- RefreshEventArgs.cs
- TileModeValidation.cs
- TableItemPattern.cs
- MasterPage.cs
- DataGridViewRow.cs
- ContourSegment.cs
- Privilege.cs
- ReceiveDesigner.xaml.cs
- Query.cs
- PtsCache.cs
- ManageRequest.cs
- Point.cs
- ToolTipAutomationPeer.cs
- Baml2006ReaderContext.cs
- DeviceContexts.cs
- CodeBinaryOperatorExpression.cs
- ObjectIDGenerator.cs
- MenuScrollingVisibilityConverter.cs
- InstanceHandle.cs
- EventItfInfo.cs
- XmlSchemaElement.cs
- IDQuery.cs
- WindowsSysHeader.cs
- ToolStripScrollButton.cs
- MasterPageCodeDomTreeGenerator.cs
- VisualBrush.cs
- SafeNativeMethods.cs
- DependentTransaction.cs
- CompositeFontParser.cs
- OnOperation.cs
- Select.cs
- Convert.cs
- SqlConnectionManager.cs
- QilParameter.cs
- DataGridViewComboBoxColumn.cs
- TitleStyle.cs
- storepermission.cs
- __TransparentProxy.cs
- QuotedStringWriteStateInfo.cs
- DefaultBindingPropertyAttribute.cs
- SerTrace.cs
- DBCSCodePageEncoding.cs
- AuthenticationService.cs
- String.cs
- SafeEventLogWriteHandle.cs
- DoubleLink.cs
- SqlDataSourceDesigner.cs
- RemoveFromCollection.cs
- returneventsaver.cs
- LocalizationComments.cs
- MailDefinition.cs
- DataServiceQueryException.cs
- ProviderIncompatibleException.cs
- StreamAsIStream.cs
- ToolStripContentPanel.cs
- ValueChangedEventManager.cs
- PersonalizablePropertyEntry.cs
- DetailsViewInsertEventArgs.cs
- WpfWebRequestHelper.cs
- SerializationUtility.cs
- XmlMembersMapping.cs
- TemplateControlBuildProvider.cs
- GCHandleCookieTable.cs
- SqlConnectionStringBuilder.cs
- OleDbRowUpdatedEvent.cs
- wmiprovider.cs