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
- PathSegmentCollection.cs
- ContentIterators.cs
- CollectionBuilder.cs
- ProfessionalColorTable.cs
- ByteRangeDownloader.cs
- BitmapMetadata.cs
- FixedSchema.cs
- DependencyPropertyDescriptor.cs
- CodeMemberProperty.cs
- JsonServiceDocumentSerializer.cs
- CompilerTypeWithParams.cs
- HttpRequest.cs
- CursorConverter.cs
- QilStrConcat.cs
- ScrollItemPatternIdentifiers.cs
- TreeNode.cs
- ParseChildrenAsPropertiesAttribute.cs
- TypeTypeConverter.cs
- SetIterators.cs
- StringUtil.cs
- TabPanel.cs
- SubpageParagraph.cs
- ObjectListDataBindEventArgs.cs
- ProfileProvider.cs
- SamlAuthorizationDecisionClaimResource.cs
- SessionPageStatePersister.cs
- InputLanguageManager.cs
- StrokeNodeEnumerator.cs
- VectorConverter.cs
- VectorKeyFrameCollection.cs
- XdrBuilder.cs
- ProfileService.cs
- SqlXml.cs
- ManagementNamedValueCollection.cs
- TextMarkerSource.cs
- SqlBuilder.cs
- SoapSchemaImporter.cs
- BindingContext.cs
- ActivityBindForm.cs
- HttpRuntime.cs
- PropertyMap.cs
- ZipIOBlockManager.cs
- WindowsUpDown.cs
- GuidelineSet.cs
- COM2FontConverter.cs
- ScalarConstant.cs
- WebPartsSection.cs
- SettingsAttributes.cs
- TraceSection.cs
- WebReferencesBuildProvider.cs
- PrePrepareMethodAttribute.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- TdsParserStaticMethods.cs
- GPRECTF.cs
- EntityContainer.cs
- DataGridItemCollection.cs
- MessageSmuggler.cs
- ViewGenerator.cs
- DataGridViewCellConverter.cs
- CssStyleCollection.cs
- MachineKeyConverter.cs
- ListViewDeleteEventArgs.cs
- VirtualDirectoryMappingCollection.cs
- Utility.cs
- LoginDesigner.cs
- TextChangedEventArgs.cs
- PEFileEvidenceFactory.cs
- ReadOnlyDictionary.cs
- BreakRecordTable.cs
- EntitySqlQueryCacheEntry.cs
- UidManager.cs
- SiteMapHierarchicalDataSourceView.cs
- _DomainName.cs
- WebPartsPersonalization.cs
- VScrollBar.cs
- FixUp.cs
- Themes.cs
- Stackframe.cs
- LinqDataSourceInsertEventArgs.cs
- FileDialog.cs
- InternalUserCancelledException.cs
- ActivityBindForm.cs
- BindingMemberInfo.cs
- CaseExpr.cs
- EnumerableRowCollectionExtensions.cs
- UnauthorizedAccessException.cs
- WorkflowEnvironment.cs
- SqlLiftIndependentRowExpressions.cs
- Brushes.cs
- TypeLibConverter.cs
- RadioButtonStandardAdapter.cs
- SearchForVirtualItemEventArgs.cs
- DBAsyncResult.cs
- WorkflowMarkupSerializerMapping.cs
- Matrix.cs
- MatrixAnimationUsingKeyFrames.cs
- PseudoWebRequest.cs
- ExceptionValidationRule.cs
- LinearGradientBrush.cs
- StringCollectionMarkupSerializer.cs