Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CommonUI / System / Drawing / Advanced / HatchBrush.cs / 1 / HatchBrush.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Drawing2D { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; using System.Drawing.Internal; /** * Represent a HatchBrush brush object */ ////// /// Defines a rectangular brush with a hatch /// style, a foreground color, and a background color. /// public sealed class HatchBrush : Brush { /** * Create a new hatch brush object */ ////// /// public HatchBrush(HatchStyle hatchstyle, Color foreColor) : this(hatchstyle, foreColor, Color.FromArgb( (int) unchecked( (int) 0xff000000) ) ) { } ////// Initializes a new instance of the ///class with the specified and foreground color. /// /// /// public HatchBrush(HatchStyle hatchstyle, Color foreColor, Color backColor) { IntPtr brush = IntPtr.Zero; int status = SafeNativeMethods.Gdip.GdipCreateHatchBrush((int) hatchstyle, foreColor.ToArgb(), backColor.ToArgb(), out brush); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); SetNativeBrush(brush); } ////// Initializes a new instance of the ///class with the specified , /// foreground color, and background color. /// /// Constructor to initialize this object from a GDI+ native reference. /// internal HatchBrush(IntPtr nativeBrush ) { Debug.Assert( nativeBrush != IntPtr.Zero, "Initializing native brush with null." ); SetNativeBrush( nativeBrush ); } ////// /// Creates an exact copy of this public override object Clone() { IntPtr cloneBrush = IntPtr.Zero; int status = SafeNativeMethods.Gdip.GdipCloneBrush(new HandleRef(this, this.NativeBrush), out cloneBrush); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return new HatchBrush(cloneBrush); } /** * Get hatch brush object attributes */ ///. /// /// /// Gets the hatch style of this public HatchStyle HatchStyle { get { int hatchStyle = 0; int status = SafeNativeMethods.Gdip.GdipGetHatchStyle(new HandleRef(this, this.NativeBrush), out hatchStyle); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return (HatchStyle) hatchStyle; } } ///. /// /// /// Gets the color of hatch lines drawn by this /// public Color ForegroundColor { get { int forecol; int status = SafeNativeMethods.Gdip.GdipGetHatchForegroundColor(new HandleRef(this, this.NativeBrush), out forecol); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return Color.FromArgb(forecol); } } ///. /// /// /// public Color BackgroundColor { get { int backcol; int status = SafeNativeMethods.Gdip.GdipGetHatchBackgroundColor(new HandleRef(this, this.NativeBrush), out backcol); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return Color.FromArgb(backcol); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets the color of spaces between the hatch /// lines drawn by this ///. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Drawing2D { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; using System.Drawing.Internal; /** * Represent a HatchBrush brush object */ ////// /// Defines a rectangular brush with a hatch /// style, a foreground color, and a background color. /// public sealed class HatchBrush : Brush { /** * Create a new hatch brush object */ ////// /// public HatchBrush(HatchStyle hatchstyle, Color foreColor) : this(hatchstyle, foreColor, Color.FromArgb( (int) unchecked( (int) 0xff000000) ) ) { } ////// Initializes a new instance of the ///class with the specified and foreground color. /// /// /// public HatchBrush(HatchStyle hatchstyle, Color foreColor, Color backColor) { IntPtr brush = IntPtr.Zero; int status = SafeNativeMethods.Gdip.GdipCreateHatchBrush((int) hatchstyle, foreColor.ToArgb(), backColor.ToArgb(), out brush); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); SetNativeBrush(brush); } ////// Initializes a new instance of the ///class with the specified , /// foreground color, and background color. /// /// Constructor to initialize this object from a GDI+ native reference. /// internal HatchBrush(IntPtr nativeBrush ) { Debug.Assert( nativeBrush != IntPtr.Zero, "Initializing native brush with null." ); SetNativeBrush( nativeBrush ); } ////// /// Creates an exact copy of this public override object Clone() { IntPtr cloneBrush = IntPtr.Zero; int status = SafeNativeMethods.Gdip.GdipCloneBrush(new HandleRef(this, this.NativeBrush), out cloneBrush); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return new HatchBrush(cloneBrush); } /** * Get hatch brush object attributes */ ///. /// /// /// Gets the hatch style of this public HatchStyle HatchStyle { get { int hatchStyle = 0; int status = SafeNativeMethods.Gdip.GdipGetHatchStyle(new HandleRef(this, this.NativeBrush), out hatchStyle); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return (HatchStyle) hatchStyle; } } ///. /// /// /// Gets the color of hatch lines drawn by this /// public Color ForegroundColor { get { int forecol; int status = SafeNativeMethods.Gdip.GdipGetHatchForegroundColor(new HandleRef(this, this.NativeBrush), out forecol); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return Color.FromArgb(forecol); } } ///. /// /// /// public Color BackgroundColor { get { int backcol; int status = SafeNativeMethods.Gdip.GdipGetHatchBackgroundColor(new HandleRef(this, this.NativeBrush), out backcol); if (status != SafeNativeMethods.Gdip.Ok) throw SafeNativeMethods.Gdip.StatusException(status); return Color.FromArgb(backcol); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets the color of spaces between the hatch /// lines drawn by this ///. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IPPacketInformation.cs
- DoubleSumAggregationOperator.cs
- PersonalizationEntry.cs
- ImageAutomationPeer.cs
- Cursor.cs
- BindingValueChangedEventArgs.cs
- TimeSpanParse.cs
- HttpRuntimeSection.cs
- Point4DValueSerializer.cs
- DataSetMappper.cs
- HtmlTableCell.cs
- QuaternionRotation3D.cs
- TaskSchedulerException.cs
- AttachedAnnotationChangedEventArgs.cs
- MapPathBasedVirtualPathProvider.cs
- ChannelManager.cs
- DataGridAutoFormatDialog.cs
- FragmentNavigationEventArgs.cs
- CurrentChangedEventManager.cs
- Line.cs
- ConnectionOrientedTransportManager.cs
- SpellerHighlightLayer.cs
- CharStorage.cs
- OleServicesContext.cs
- OwnerDrawPropertyBag.cs
- XmlSerializationGeneratedCode.cs
- FastPropertyAccessor.cs
- SessionEndingEventArgs.cs
- _NTAuthentication.cs
- AndCondition.cs
- FixUpCollection.cs
- SqlClientWrapperSmiStreamChars.cs
- SecondaryViewProvider.cs
- OracleInfoMessageEventArgs.cs
- TextServicesPropertyRanges.cs
- QilTargetType.cs
- XmlSchemaNotation.cs
- PropertyGridView.cs
- SqlFileStream.cs
- ContentDefinition.cs
- ToolStripDesignerAvailabilityAttribute.cs
- WindowsStartMenu.cs
- safelinkcollection.cs
- Enlistment.cs
- Int16Storage.cs
- RegistrationServices.cs
- MasterPageParser.cs
- XmlValidatingReader.cs
- HiddenField.cs
- LinkedList.cs
- UnsafeNativeMethodsMilCoreApi.cs
- wgx_exports.cs
- MethodAccessException.cs
- WebConvert.cs
- NextPreviousPagerField.cs
- FileLevelControlBuilderAttribute.cs
- MembershipValidatePasswordEventArgs.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- FigureHelper.cs
- ObjectDataProvider.cs
- SrgsOneOf.cs
- CapabilitiesUse.cs
- DataSourceProvider.cs
- XPathNodeIterator.cs
- DoWorkEventArgs.cs
- SystemIPGlobalStatistics.cs
- MgmtResManager.cs
- SqlUnionizer.cs
- AppDomainManager.cs
- ManageRequest.cs
- CompilationUtil.cs
- ConnectionStringsExpressionBuilder.cs
- WmpBitmapEncoder.cs
- Ray3DHitTestResult.cs
- PerformanceCounterPermission.cs
- LoginName.cs
- LogPolicy.cs
- DesignerInterfaces.cs
- FillErrorEventArgs.cs
- SessionState.cs
- KeyValuePair.cs
- DataGridViewColumnEventArgs.cs
- StandardOleMarshalObject.cs
- IsolatedStorageException.cs
- SurrogateEncoder.cs
- SessionStateContainer.cs
- DrawingContextWalker.cs
- _DomainName.cs
- CodeCommentStatement.cs
- Stack.cs
- SelectorItemAutomationPeer.cs
- SqlEnums.cs
- XmlNavigatorStack.cs
- EntitySqlQueryState.cs
- CombinedGeometry.cs
- VirtualDirectoryMappingCollection.cs
- Light.cs
- DataColumnChangeEvent.cs
- OracleParameterCollection.cs
- QilNode.cs