Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / documents / FixedDocumentPaginator.cs / 1 / FixedDocumentPaginator.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: FixedDocumentPaginator.cs // // Description: This is the abstract base class for all paginating layouts. // It provides default implementations for the asynchronous // versions of GetPage and ComputePageCount. // // History: // 08/29/2005 : [....] - created. // //--------------------------------------------------------------------------- using System; // IServiceProvider using System.ComponentModel; // AsyncCompletedEventArgs using System.Windows; // Size using System.Windows.Documents; // DocumentPaginator using System.Windows.Media; // Visual namespace MS.Internal.Documents { ////// This is the abstract base class for all paginating layouts. It /// provides default implementations for the asynchronous versions of /// GetPage and ComputePageCount. /// internal class FixedDocumentPaginator : DynamicDocumentPaginator, IServiceProvider { //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors ////// Constructor /// internal FixedDocumentPaginator(FixedDocument document) { _document = document; } #endregion Constructors //-------------------------------------------------------------------- // // Public Methods // //------------------------------------------------------------------- #region Public Methods ////// public override DocumentPage GetPage(int pageNumber) { return _document.GetPage(pageNumber); } ////// /// public override void GetPageAsync(int pageNumber, object userState) { _document.GetPageAsync(pageNumber, userState); } ////// /// public override void CancelAsync(object userState) { _document.CancelAsync(userState); } ////// /// public override int GetPageNumber(ContentPosition contentPosition) { return _document.GetPageNumber(contentPosition); } ////// /// public override ContentPosition GetPagePosition(DocumentPage page) { return _document.GetPagePosition(page); } ////// /// public override ContentPosition GetObjectPosition(Object o) { return _document.GetObjectPosition(o); } #endregion Public Methods //-------------------------------------------------------------------- // // Public Properties // //-------------------------------------------------------------------- #region Public Properties ////// /// public override bool IsPageCountValid { get { return _document.IsPageCountValid; } } ////// /// public override int PageCount { get { return _document.PageCount; } } ////// /// public override Size PageSize { get { return _document.PageSize; } set { _document.PageSize = value; } } ////// /// public override IDocumentPaginatorSource Source { get { return _document; } } #endregion Public Properties //------------------------------------------------------------------- // // Internal Methods // //-------------------------------------------------------------------- #region Internal Methods internal void NotifyGetPageCompleted(GetPageCompletedEventArgs e) { OnGetPageCompleted(e); } internal void NotifyPaginationCompleted(EventArgs e) { OnPaginationCompleted(e); } internal void NotifyPaginationProgress(PaginationProgressEventArgs e) { OnPaginationProgress(e); } internal void NotifyPagesChanged(PagesChangedEventArgs e) { OnPagesChanged(e); } #endregion Internal Methods //------------------------------------------------------------------- // // Private Fields // //------------------------------------------------------------------- #region Private Fields private readonly FixedDocument _document; #endregion Private Fields //------------------------------------------------------------------- // // IServiceProvider Members // //-------------------------------------------------------------------- #region IServiceProvider Members ////// /// Returns service objects associated with this control. /// /// Specifies the type of service object to get. object IServiceProvider.GetService(Type serviceType) { return ((IServiceProvider)_document).GetService(serviceType); } #endregion IServiceProvider Members } } // 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
- ActivityScheduledQuery.cs
- CodeVariableDeclarationStatement.cs
- Operand.cs
- XmlSchemaChoice.cs
- HtmlFormParameterReader.cs
- ResourcesBuildProvider.cs
- StrokeNodeData.cs
- _Connection.cs
- StagingAreaInputItem.cs
- DataGridColumnCollection.cs
- ParameterReplacerVisitor.cs
- ParserContext.cs
- TraceContextEventArgs.cs
- ExportOptions.cs
- RulePatternOps.cs
- FrameSecurityDescriptor.cs
- HtmlInputPassword.cs
- PagerSettings.cs
- AsyncDataRequest.cs
- List.cs
- IApplicationTrustManager.cs
- ComEventsMethod.cs
- DescendantOverDescendantQuery.cs
- PerformanceCounter.cs
- XmlReflectionMember.cs
- SelectionListDesigner.cs
- DeferredBinaryDeserializerExtension.cs
- CanonicalFontFamilyReference.cs
- EntityViewGenerationAttribute.cs
- Page.cs
- Unit.cs
- ProfileBuildProvider.cs
- Scripts.cs
- InputLanguageCollection.cs
- InputDevice.cs
- InputQueueChannel.cs
- EntryWrittenEventArgs.cs
- DataGridLinkButton.cs
- InstanceKeyNotReadyException.cs
- COM2IProvidePropertyBuilderHandler.cs
- SizeAnimation.cs
- HtmlTableCellCollection.cs
- SQLBinaryStorage.cs
- CodeAttributeDeclarationCollection.cs
- GlyphRun.cs
- EntityDataSourceReferenceGroup.cs
- RuntimeConfig.cs
- ServerValidateEventArgs.cs
- AttributeUsageAttribute.cs
- ReliableOutputSessionChannel.cs
- PropertyManager.cs
- RTTrackingProfile.cs
- VBIdentifierName.cs
- SchemaNotation.cs
- ItemMap.cs
- AuthStoreRoleProvider.cs
- tabpagecollectioneditor.cs
- NetTcpSecurityElement.cs
- WindowsHyperlink.cs
- SurrogateChar.cs
- SdlChannelSink.cs
- SrgsItemList.cs
- ViewManager.cs
- RightsManagementManager.cs
- InputLanguageCollection.cs
- RegexFCD.cs
- FormattedText.cs
- HtmlTableRow.cs
- QueryContinueDragEventArgs.cs
- DataRowCollection.cs
- FormViewInsertedEventArgs.cs
- VisualProxy.cs
- CallId.cs
- DelegatedStream.cs
- GenericParameterDataContract.cs
- SerializableAttribute.cs
- _NegotiateClient.cs
- WorkflowHostingResponseContext.cs
- HMACSHA1.cs
- X509ChainPolicy.cs
- EnumCodeDomSerializer.cs
- InputQueue.cs
- PathSegment.cs
- PassportIdentity.cs
- ActiveXSerializer.cs
- DataBoundControlAdapter.cs
- TreeSet.cs
- EnumerationRangeValidationUtil.cs
- TreeViewImageKeyConverter.cs
- SetterBase.cs
- RegexInterpreter.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- IntegerValidatorAttribute.cs
- NonValidatingSecurityTokenAuthenticator.cs
- DbInsertCommandTree.cs
- SqlGenericUtil.cs
- Point3DAnimationBase.cs
- SHA1Managed.cs
- XmlUTF8TextReader.cs
- DES.cs