Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / DrawingVisualDrawingContext.cs / 1305600 / DrawingVisualDrawingContext.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2003 // // File: VisualDrawingContext.cs // // History: // [....]: 04/19/2003 // Created it based on the DrawingVisualDrawingContext used in the AvPhat branch. // [....]: 07/02/2003 // Renamed to RetainedDrawingContext, which derives from DrawingContext // [....]: 07/16/2003 // Renamed again to DrawingVisualDrawingContext, which derives from RenderDataDrawingContext // //----------------------------------------------------------------------------- using System; using System.Security.Permissions; using System.Windows; using System.Windows.Threading; using System.Windows.Media.Animation; using System.Windows.Media; using System.Windows.Media.Composition; using System.Diagnostics; using MS.Internal; namespace System.Windows.Media { ////// VisualDrawingContext - the DrawingContext for Visuals that can create it. /// internal class VisualDrawingContext : RenderDataDrawingContext { #region Constructors ////// Creates a drawing context for a DrawingVisual. /// The Visual must not be null. /// /// The Visual that created the DrawingContext, which must not be null. internal VisualDrawingContext( Visual ownerVisual ) { Debug.Assert(null != ownerVisual); _ownerVisual = ownerVisual; } #endregion Constructors #region Protected Methods ////// CloseCore - Implemented be derivees to Close the context. /// This will only be called once (if ever) per instance. /// /// The render data produced by this RenderDataDrawingContext. protected override void CloseCore(RenderData renderData) { Debug.Assert(null != _ownerVisual); _ownerVisual.RenderClose(renderData); #if DEBUG _ownerVisual = null; #endif } #endregion Protected Methods #region Private Fields private Visual _ownerVisual; #endregion Private Fields } } // 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
- UriWriter.cs
- DefaultTextStoreTextComposition.cs
- DescendantOverDescendantQuery.cs
- QilInvoke.cs
- WebPartCancelEventArgs.cs
- Int32EqualityComparer.cs
- XmlIlTypeHelper.cs
- XmlCharCheckingWriter.cs
- EditorZoneDesigner.cs
- Validator.cs
- FixedDocument.cs
- ClientSettingsStore.cs
- PageAdapter.cs
- GridLength.cs
- RegistryPermission.cs
- DragEventArgs.cs
- DefaultBinder.cs
- CookieParameter.cs
- GroupBoxRenderer.cs
- DependencyPropertyHelper.cs
- DrawingCollection.cs
- WebHttpBehavior.cs
- ProxyGenerator.cs
- SqlCacheDependency.cs
- NameValuePermission.cs
- CapabilitiesPattern.cs
- StorageBasedPackageProperties.cs
- SecUtil.cs
- BrowserCapabilitiesCompiler.cs
- BufferedGraphicsContext.cs
- StickyNoteContentControl.cs
- relpropertyhelper.cs
- HtmlInputCheckBox.cs
- __ComObject.cs
- WebServicesSection.cs
- ToolStripAdornerWindowService.cs
- ObjectQueryExecutionPlan.cs
- VisualStyleInformation.cs
- DataContractSerializerElement.cs
- MissingManifestResourceException.cs
- DrawingImage.cs
- CatalogZone.cs
- DiscreteKeyFrames.cs
- ConnectionPointCookie.cs
- DocumentOrderQuery.cs
- FontStretch.cs
- DefaultExpression.cs
- SerializationObjectManager.cs
- OciLobLocator.cs
- ReliableRequestSessionChannel.cs
- BamlBinaryReader.cs
- Console.cs
- DataTemplateSelector.cs
- ToggleProviderWrapper.cs
- CaseStatement.cs
- IPCCacheManager.cs
- BaseConfigurationRecord.cs
- WindowsTokenRoleProvider.cs
- HtmlInputCheckBox.cs
- EventRecord.cs
- PersonalizationStateQuery.cs
- WinHttpWebProxyFinder.cs
- HTMLTextWriter.cs
- Number.cs
- BoundPropertyEntry.cs
- RefreshEventArgs.cs
- UpDownEvent.cs
- PenContext.cs
- Token.cs
- SessionPageStateSection.cs
- ConnectionPoint.cs
- DataBindingCollection.cs
- XmlIlVisitor.cs
- MediaElement.cs
- ISSmlParser.cs
- SystemIPv4InterfaceProperties.cs
- ListenerConnectionDemuxer.cs
- WebPartMenu.cs
- WrappedReader.cs
- ForwardPositionQuery.cs
- EasingQuaternionKeyFrame.cs
- CodeGenerator.cs
- ToolStripMenuItem.cs
- DataGridViewControlCollection.cs
- BamlVersionHeader.cs
- ManualResetEventSlim.cs
- PathSegmentCollection.cs
- InternalsVisibleToAttribute.cs
- ParsedAttributeCollection.cs
- InstanceKeyCompleteException.cs
- Byte.cs
- SkewTransform.cs
- VectorValueSerializer.cs
- GregorianCalendar.cs
- COM2PropertyDescriptor.cs
- StorageMappingItemCollection.cs
- GetCryptoTransformRequest.cs
- UserControlBuildProvider.cs
- ContentPathSegment.cs
- RootDesignerSerializerAttribute.cs