Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- #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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlDataProvider.cs
- DataObject.cs
- MulticastOption.cs
- InputLanguageManager.cs
- ClientSponsor.cs
- EndpointInfoCollection.cs
- UrlPath.cs
- AppSettingsReader.cs
- EastAsianLunisolarCalendar.cs
- ZeroOpNode.cs
- HostedElements.cs
- ScriptComponentDescriptor.cs
- ActivationArguments.cs
- UnsafeNativeMethods.cs
- HttpConfigurationContext.cs
- SqlUtil.cs
- SimpleWebHandlerParser.cs
- LinkUtilities.cs
- MulticastOption.cs
- IDataContractSurrogate.cs
- HtmlProps.cs
- DashStyle.cs
- DataException.cs
- SQLInt16Storage.cs
- ErrorRuntimeConfig.cs
- FigureParagraph.cs
- TypeSource.cs
- WindowsRegion.cs
- SafeReadContext.cs
- RealProxy.cs
- ExtensionQuery.cs
- ConfigurationElementCollection.cs
- ThemeInfoAttribute.cs
- ArrangedElement.cs
- UrlPropertyAttribute.cs
- PartManifestEntry.cs
- sitestring.cs
- RuntimeResourceSet.cs
- ConfigurationLocationCollection.cs
- OracleException.cs
- GroupQuery.cs
- XamlSerializer.cs
- AttributeCollection.cs
- RestClientProxyHandler.cs
- OleDbPermission.cs
- BufferedGraphicsContext.cs
- RowToParametersTransformer.cs
- SplashScreenNativeMethods.cs
- TransformedBitmap.cs
- DesignTimeParseData.cs
- Application.cs
- SqlException.cs
- Attachment.cs
- ToolTipService.cs
- CancellationTokenSource.cs
- OracleInternalConnection.cs
- DocumentViewerHelper.cs
- DataObjectPastingEventArgs.cs
- DataPagerFieldCollection.cs
- EndOfStreamException.cs
- DataGridAddNewRow.cs
- Thickness.cs
- CoreChannel.cs
- TaskFactory.cs
- ImageField.cs
- ProtocolViolationException.cs
- HttpCachePolicy.cs
- _UriTypeConverter.cs
- NameValuePermission.cs
- TextReader.cs
- KeyInterop.cs
- ButtonFlatAdapter.cs
- XomlDesignerLoader.cs
- DispatcherTimer.cs
- SafeNativeMethodsCLR.cs
- TypeLibConverter.cs
- sqlser.cs
- TrackingServices.cs
- Light.cs
- RuntimeConfigurationRecord.cs
- WindowsStatic.cs
- ContextMenuAutomationPeer.cs
- FactoryGenerator.cs
- DbProviderSpecificTypePropertyAttribute.cs
- MetadataExporter.cs
- OpacityConverter.cs
- AnnotationResourceCollection.cs
- ContentHostHelper.cs
- CurrencyManager.cs
- SoapSchemaImporter.cs
- QueryCursorEventArgs.cs
- PixelFormatConverter.cs
- Metadata.cs
- CompositeActivityDesigner.cs
- MenuEventArgs.cs
- ExtendedPropertyDescriptor.cs
- Base64Encoder.cs
- NestPullup.cs
- ProfileParameter.cs
- ElementHostPropertyMap.cs