Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InProcStateClientManager.cs
- XmlSchemaRedefine.cs
- MethodBuilderInstantiation.cs
- DrawingContext.cs
- NullableBoolConverter.cs
- MappingMetadataHelper.cs
- WorkflowQueueInfo.cs
- RowUpdatedEventArgs.cs
- FixUpCollection.cs
- XmlArrayItemAttribute.cs
- XmlEncoding.cs
- WebBrowserPermission.cs
- UserPreferenceChangingEventArgs.cs
- SmiContext.cs
- QuaternionValueSerializer.cs
- TypeCollectionDesigner.xaml.cs
- WebServiceBindingAttribute.cs
- CodeParameterDeclarationExpression.cs
- DesignerSerializationOptionsAttribute.cs
- AmbientValueAttribute.cs
- VectorCollection.cs
- ApplicationSecurityManager.cs
- DataGridAutoFormatDialog.cs
- DataServiceBehavior.cs
- WebPartZoneBase.cs
- SQLBoolean.cs
- QilInvokeEarlyBound.cs
- WsdlBuildProvider.cs
- M3DUtil.cs
- ReferenceEqualityComparer.cs
- SiteIdentityPermission.cs
- ObjectDataSourceSelectingEventArgs.cs
- AssociationProvider.cs
- RuntimeHelpers.cs
- BasicViewGenerator.cs
- TerminateWorkflow.cs
- CodeAttachEventStatement.cs
- DoubleConverter.cs
- BufferedResponseStream.cs
- DataGridCell.cs
- RTLAwareMessageBox.cs
- EmptyReadOnlyDictionaryInternal.cs
- XmlParserContext.cs
- XslAstAnalyzer.cs
- CachedPathData.cs
- XPathMultyIterator.cs
- AnnotationAuthorChangedEventArgs.cs
- MemberProjectionIndex.cs
- SqlDataSourceSelectingEventArgs.cs
- BuildProviderCollection.cs
- XmlSerializerNamespaces.cs
- BackoffTimeoutHelper.cs
- ScriptModule.cs
- Light.cs
- QilSortKey.cs
- ApplicationId.cs
- MetafileHeader.cs
- LinkDesigner.cs
- UpdateTracker.cs
- CreatingCookieEventArgs.cs
- GestureRecognitionResult.cs
- SerializerWriterEventHandlers.cs
- SurrogateSelector.cs
- KeysConverter.cs
- GacUtil.cs
- XmlText.cs
- WindowsEditBoxRange.cs
- OwnerDrawPropertyBag.cs
- LinkConverter.cs
- DataSourceHelper.cs
- Peer.cs
- QfeChecker.cs
- DataServiceHostWrapper.cs
- SmiTypedGetterSetter.cs
- VisualTreeHelper.cs
- ToolBarButtonClickEvent.cs
- PieceNameHelper.cs
- FontStretches.cs
- SelectionList.cs
- XmlILStorageConverter.cs
- JsonObjectDataContract.cs
- Expressions.cs
- HttpVersion.cs
- GroupQuery.cs
- BinarySecretKeyIdentifierClause.cs
- GlyphTypeface.cs
- CodeTypeDelegate.cs
- SqlDependencyUtils.cs
- TimelineGroup.cs
- TaskFormBase.cs
- MetadataSource.cs
- ResourceDisplayNameAttribute.cs
- WindowsTooltip.cs
- ToolTip.cs
- WmlMobileTextWriter.cs
- QuaternionValueSerializer.cs
- DetailsViewRow.cs
- RewritingValidator.cs
- StreamInfo.cs
- InvalidWorkflowException.cs