Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- RegisteredScript.cs
- XmlCDATASection.cs
- OrderedDictionary.cs
- DataBindingHandlerAttribute.cs
- ITreeGenerator.cs
- WindowsFormsDesignerOptionService.cs
- ForeignKeyConstraint.cs
- Aes.cs
- AccessControlEntry.cs
- ProfileSettingsCollection.cs
- GPRECT.cs
- Normalization.cs
- PartialArray.cs
- SchemeSettingElementCollection.cs
- StrokeSerializer.cs
- TransformerInfoCollection.cs
- ExcCanonicalXml.cs
- BufferedStream.cs
- XmlAttributeCollection.cs
- BinaryObjectReader.cs
- ColumnHeaderConverter.cs
- RTLAwareMessageBox.cs
- MobileDeviceCapabilitiesSectionHandler.cs
- DashStyles.cs
- RowUpdatedEventArgs.cs
- HyperLinkField.cs
- PropVariant.cs
- StringAnimationUsingKeyFrames.cs
- SmtpCommands.cs
- DataSourceSelectArguments.cs
- Permission.cs
- EntitySetRetriever.cs
- TraceFilter.cs
- ControlIdConverter.cs
- ListViewUpdateEventArgs.cs
- DataTemplateKey.cs
- _CookieModule.cs
- InfoCardTrace.cs
- BufferedReadStream.cs
- TextBox.cs
- Sequence.cs
- TrustManager.cs
- DbConnectionHelper.cs
- XmlTextReaderImplHelpers.cs
- SqlConnectionStringBuilder.cs
- SectionUpdates.cs
- ImageKeyConverter.cs
- PrePostDescendentsWalker.cs
- DialogResultConverter.cs
- PartManifestEntry.cs
- FileLoadException.cs
- SqlDataSourceDesigner.cs
- EventProviderBase.cs
- OracleTransaction.cs
- PropertyGridView.cs
- _SpnDictionary.cs
- OperationContext.cs
- IntegerCollectionEditor.cs
- CounterCreationData.cs
- ColorContextHelper.cs
- XmlNotation.cs
- SaveFileDialog.cs
- ContentElement.cs
- PerspectiveCamera.cs
- HandledEventArgs.cs
- Binding.cs
- UnauthorizedWebPart.cs
- VectorCollectionConverter.cs
- PageCatalogPartDesigner.cs
- SkinBuilder.cs
- WsdlBuildProvider.cs
- StylusPointDescription.cs
- AutomationPatternInfo.cs
- UnmanagedMemoryStream.cs
- XmlBinaryReader.cs
- CorruptingExceptionCommon.cs
- PartialCachingControl.cs
- ApplicationProxyInternal.cs
- AsyncPostBackErrorEventArgs.cs
- CodeCommentStatementCollection.cs
- Vector.cs
- AttachmentCollection.cs
- XmlQueryOutput.cs
- ResourceReferenceExpression.cs
- ToolStripSystemRenderer.cs
- WebPartConnection.cs
- SiteMapDataSource.cs
- FormsAuthenticationUserCollection.cs
- CallbackTimeoutsElement.cs
- TextEndOfParagraph.cs
- Compress.cs
- XmlHelper.cs
- HttpServerVarsCollection.cs
- WindowPatternIdentifiers.cs
- Triangle.cs
- HierarchicalDataBoundControl.cs
- Condition.cs
- ParentControlDesigner.cs
- JsonServiceDocumentSerializer.cs
- ConsumerConnectionPoint.cs