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
- ListViewItem.cs
- EmbossBitmapEffect.cs
- ReferenceService.cs
- BevelBitmapEffect.cs
- SystemMulticastIPAddressInformation.cs
- HtmlInputFile.cs
- TimeSpanValidator.cs
- HostingEnvironmentSection.cs
- CellQuery.cs
- PlainXmlSerializer.cs
- SqlAggregateChecker.cs
- BufferedGraphicsManager.cs
- TimerElapsedEvenArgs.cs
- ButtonColumn.cs
- SharedDp.cs
- IndicCharClassifier.cs
- RepeatInfo.cs
- SafePEFileHandle.cs
- XmlDocumentType.cs
- IsolatedStorageFile.cs
- SessionPageStatePersister.cs
- SaveFileDialog.cs
- MSHTMLHost.cs
- FragmentNavigationEventArgs.cs
- ToolCreatedEventArgs.cs
- Function.cs
- DbConnectionPoolGroupProviderInfo.cs
- BuildResultCache.cs
- ArrayListCollectionBase.cs
- TraceEventCache.cs
- TextAction.cs
- HTTPNotFoundHandler.cs
- Condition.cs
- DoubleAnimationUsingPath.cs
- Hyperlink.cs
- PlatformCulture.cs
- ComponentDispatcher.cs
- MessageSecurityOverMsmq.cs
- UIElementCollection.cs
- SharedPersonalizationStateInfo.cs
- BindingExpressionUncommonField.cs
- AssociationType.cs
- CompilationUnit.cs
- DBCommandBuilder.cs
- RowToParametersTransformer.cs
- SafeBitVector32.cs
- OpCodes.cs
- WhitespaceSignificantCollectionAttribute.cs
- SerializationInfoEnumerator.cs
- ObjectAssociationEndMapping.cs
- StandardCommandToolStripMenuItem.cs
- ConfigXmlElement.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- KeyValuePair.cs
- TokenBasedSet.cs
- SoapSchemaMember.cs
- MissingManifestResourceException.cs
- ListViewItem.cs
- GridViewRow.cs
- CapabilitiesState.cs
- TextTreeExtractElementUndoUnit.cs
- DataGridColumn.cs
- ListViewCommandEventArgs.cs
- DefaultAutoFieldGenerator.cs
- _ContextAwareResult.cs
- MachineKeyValidationConverter.cs
- TabItem.cs
- RoutedEvent.cs
- RightsManagementUser.cs
- CalendarButton.cs
- CheckedListBox.cs
- CheckBox.cs
- NativeBuffer.cs
- SetMemberBinder.cs
- MergeEnumerator.cs
- ParagraphVisual.cs
- XsltCompileContext.cs
- CodeAttributeArgument.cs
- ShutDownListener.cs
- PolicyManager.cs
- XmlEncoding.cs
- RetrieveVirtualItemEventArgs.cs
- Error.cs
- SqlMetaData.cs
- AnimationException.cs
- SqlTriggerAttribute.cs
- SynchronizedPool.cs
- EntityDataSourceDesigner.cs
- ConfigurationStrings.cs
- TableDetailsCollection.cs
- FontFaceLayoutInfo.cs
- _AuthenticationState.cs
- ListItemCollection.cs
- SqlCacheDependencySection.cs
- BamlWriter.cs
- SafeArrayTypeMismatchException.cs
- InkCanvasSelection.cs
- OperationContractAttribute.cs
- HandlerBase.cs
- ChannelFactoryBase.cs