11 references to PageCount
PresentationFramework (11)
src\Framework\MS\Internal\Documents\IFlowDocumentViewer.cs (4)
773get { return PageCount; } 843GoToPage(Math.Min(PageCount, MasterPageNumber + 2)); 852GoToPage(PageCount); 907return (viewer.MasterPageNumber < viewer.PageCount - 1);
src\Framework\System\Windows\Controls\DocumentViewer.cs (2)
943if (zeroIndexed >= 0 && zeroIndexed < PageCount) 993_documentScrollInfo.MakePageVisible( PageCount - 1 );
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (5)
175return (pageNumber > 0 && pageNumber <= this.PageCount) || 176((_document != null) && (pageNumber - 1 == this.PageCount) && !_document.DocumentPaginator.IsPageCountValid); 259/// <see cref="PageCount"/> 269/// <see cref="PageCount"/> 561ShiftPagesByOffset(this.PageCount - this.MasterPageNumber);