Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Misc / GDI / WindowsSolidBrush.cs / 1305376 / WindowsSolidBrush.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if [....]_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; using System.Runtime.Versioning; #if [....]_PUBLIC_GRAPHICS_LIBRARY public #else internal #endif sealed class WindowsSolidBrush : WindowsBrush { [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] 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. } [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] public WindowsSolidBrush(DeviceContext dc) : base(dc) { // CreateBrush() on demand. } [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] public WindowsSolidBrush(DeviceContext dc, Color color) : base( dc, color ) { // CreateBrush() on demand. } [ResourceExposure(ResourceScope.Process)] [ResourceConsumption(ResourceScope.Process)] 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
- IndexerNameAttribute.cs
- StatusBarPanel.cs
- SecurityException.cs
- KeyValuePairs.cs
- OdbcPermission.cs
- RuntimeArgumentHandle.cs
- AnnotationService.cs
- Button.cs
- DefaultEventAttribute.cs
- EditingMode.cs
- EntityRecordInfo.cs
- shaperfactoryquerycacheentry.cs
- TraceHwndHost.cs
- Char.cs
- ShutDownListener.cs
- SetterTriggerConditionValueConverter.cs
- ObjectDataSourceView.cs
- PasswordBoxAutomationPeer.cs
- XamlBrushSerializer.cs
- DbParameterCollectionHelper.cs
- WhiteSpaceTrimStringConverter.cs
- HTMLTextWriter.cs
- InternalException.cs
- MultilineStringConverter.cs
- XmlQualifiedNameTest.cs
- LoginStatusDesigner.cs
- DependencyPropertyValueSerializer.cs
- ToolStripProgressBar.cs
- StreamHelper.cs
- DynamicControl.cs
- List.cs
- ServerType.cs
- FileDialog_Vista_Interop.cs
- TextOnlyOutput.cs
- TimeZone.cs
- ItemContainerGenerator.cs
- OlePropertyStructs.cs
- X509Certificate2Collection.cs
- SecurityContextSecurityTokenAuthenticator.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ArrayList.cs
- Transform3D.cs
- Point3DAnimationUsingKeyFrames.cs
- EditorAttribute.cs
- MobilePage.cs
- ArraySubsetEnumerator.cs
- HtmlInputSubmit.cs
- PrimaryKeyTypeConverter.cs
- RelationshipEnd.cs
- MulticastDelegate.cs
- RuntimeResourceSet.cs
- RootBrowserWindowProxy.cs
- FtpWebResponse.cs
- MimeMultiPart.cs
- InProcStateClientManager.cs
- TdsParserHelperClasses.cs
- ServiceTimeoutsBehavior.cs
- DataControlButton.cs
- PropertyValueUIItem.cs
- CatalogPartCollection.cs
- ResourceDisplayNameAttribute.cs
- ImageSource.cs
- Storyboard.cs
- XPathDescendantIterator.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- DataConnectionHelper.cs
- SharedPersonalizationStateInfo.cs
- SingleAnimationUsingKeyFrames.cs
- VideoDrawing.cs
- DisableDpiAwarenessAttribute.cs
- ServiceManager.cs
- ListChangedEventArgs.cs
- PropertyGridEditorPart.cs
- JournalEntryStack.cs
- DecoderFallback.cs
- IgnoreSectionHandler.cs
- GridViewUpdatedEventArgs.cs
- JournalEntryListConverter.cs
- BaseDataListComponentEditor.cs
- TextParaLineResult.cs
- SettingsAttributeDictionary.cs
- SchemaConstraints.cs
- WorkflowDesignerColors.cs
- SHA384Cng.cs
- PartitionedDataSource.cs
- HostProtectionPermission.cs
- TokenFactoryFactory.cs
- DynamicFilter.cs
- ExtentCqlBlock.cs
- XmlNavigatorFilter.cs
- AutomationProperties.cs
- FamilyTypefaceCollection.cs
- XmlCompatibilityReader.cs
- ByteStorage.cs
- PngBitmapEncoder.cs
- StreamReader.cs
- FormsAuthenticationUser.cs
- ColumnClickEvent.cs
- XslTransform.cs
- AuthenticationModulesSection.cs