Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Misc / GDI / DeviceContexts.cs / 1305376 / DeviceContexts.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if WGCM_TEST_SUITE // Enable tracking when built for the test suites. #define TRACK_HDC #define GDI_FONT_CACHE_TRACK #endif #if [....]_NAMESPACE namespace System.Windows.Forms.Internal #elif DRAWING_NAMESPACE namespace System.Drawing.Internal #else namespace System.Experimental.Gdi #endif { using System; using System.Collections.Generic; using System.Internal; using System.Diagnostics; using System.Drawing; using System.Threading; using Microsoft.Win32; ////// Keeps a cache of some graphics primitives. /// Created to improve performance of TextRenderer.MeasureText methods that don't receive a WindowsGraphics. /// This class mantains a cache of MRU WindowsFont objects in the process. (See VSWhidbey#301492). /// #if [....]_PUBLIC_GRAPHICS_LIBRARY public #else internal #endif static class DeviceContexts { [ThreadStatic] private static ClientUtils.WeakRefCollection activeDeviceContexts; ////// WindowsGraphicsCacheManager needs to track DeviceContext /// objects so it can ask them if a font is in use before they /// it's deleted. internal static void AddDeviceContext(DeviceContext dc) { if (activeDeviceContexts == null) { activeDeviceContexts = new ClientUtils.WeakRefCollection(); activeDeviceContexts.RefCheckThreshold = 20; // See DevDiv#82664 (the repro app attached to this bug was used to determine this number). } if (!activeDeviceContexts.Contains(dc)) { dc.Disposing += new EventHandler(OnDcDisposing); activeDeviceContexts.Add(dc); } } private static void OnDcDisposing(object sender, EventArgs e) { DeviceContext dc = sender as DeviceContext; if (dc != null) { dc.Disposing -= new EventHandler(OnDcDisposing); RemoveDeviceContext(dc); } } internal static void RemoveDeviceContext(DeviceContext dc) { if (activeDeviceContexts == null) { return; } activeDeviceContexts.RemoveByHashCode(dc); } #if !DRAWING_NAMESPACE internal static bool IsFontInUse(WindowsFont wf) { if (wf == null) { return false; } for (int i = 0; i < activeDeviceContexts.Count; i++) { DeviceContext dc = activeDeviceContexts[i] as DeviceContext; if (dc != null && (dc.ActiveFont == wf || dc.IsFontOnContextStack(wf))) { return true; } } return false; } #endif } } // 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
- CompilerState.cs
- WebPartConnectionsCloseVerb.cs
- DataViewListener.cs
- CryptoApi.cs
- SemanticResultKey.cs
- EventToken.cs
- BatchWriter.cs
- ConvertEvent.cs
- ResponseStream.cs
- TransformedBitmap.cs
- ColorPalette.cs
- Timer.cs
- FormsAuthenticationUser.cs
- MemberProjectionIndex.cs
- PeerTransportListenAddressValidatorAttribute.cs
- TableCellCollection.cs
- _OverlappedAsyncResult.cs
- TextEncodedRawTextWriter.cs
- MenuItemStyle.cs
- FixedDocumentPaginator.cs
- HtmlLink.cs
- thaishape.cs
- CapabilitiesUse.cs
- NativeCppClassAttribute.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- MetadataPropertyCollection.cs
- WebBrowser.cs
- Permission.cs
- ButtonBase.cs
- sitestring.cs
- FrameworkElement.cs
- TableItemProviderWrapper.cs
- AttributeSetAction.cs
- ExpressionQuoter.cs
- FormViewUpdatedEventArgs.cs
- SafeNativeMethods.cs
- PropertyMap.cs
- DocumentViewerBase.cs
- XamlWrappingReader.cs
- BamlVersionHeader.cs
- ThreadStartException.cs
- DetailsViewPagerRow.cs
- GACMembershipCondition.cs
- WsdlInspector.cs
- DecoderReplacementFallback.cs
- MemberAssignmentAnalysis.cs
- HtmlInputButton.cs
- BitmapCodecInfo.cs
- TextServicesPropertyRanges.cs
- CertificateReferenceElement.cs
- Random.cs
- WindowsRebar.cs
- Filter.cs
- GetPolicyDetailsRequest.cs
- StringReader.cs
- ImportCatalogPart.cs
- SourceFileInfo.cs
- BuildManagerHost.cs
- XmlDataProvider.cs
- StylusButtonEventArgs.cs
- DataError.cs
- StickyNoteAnnotations.cs
- ResourceReferenceKeyNotFoundException.cs
- DocumentCollection.cs
- EffectiveValueEntry.cs
- DesignerHelpers.cs
- DataSourceViewSchemaConverter.cs
- ControlPersister.cs
- NameSpaceExtractor.cs
- DateTimeOffsetConverter.cs
- PEFileEvidenceFactory.cs
- GradientStop.cs
- CellLabel.cs
- DoubleConverter.cs
- Debugger.cs
- WrappedIUnknown.cs
- OleDbPropertySetGuid.cs
- XamlVector3DCollectionSerializer.cs
- GridViewRowEventArgs.cs
- DbConnectionPoolGroup.cs
- SQLMoney.cs
- ColorMap.cs
- Wrapper.cs
- SqlFactory.cs
- TextEditorCopyPaste.cs
- BrowserCapabilitiesCodeGenerator.cs
- WebPartManagerInternals.cs
- infer.cs
- ParseNumbers.cs
- WizardSideBarListControlItemEventArgs.cs
- DoubleCollectionValueSerializer.cs
- AdRotatorDesigner.cs
- Columns.cs
- ReadOnlyCollectionBase.cs
- DbConnectionPool.cs
- GB18030Encoding.cs
- CodeAssignStatement.cs
- Visual3D.cs
- Vector3DAnimationUsingKeyFrames.cs
- RectValueSerializer.cs