本文整理汇总了C#中System.Windows.Size.Take方法的典型用法代码示例。如果您正苦于以下问题:C# Size.Take方法的具体用法?C# Size.Take怎么用?C# Size.Take使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Size
的用法示例。
在下文中一共展示了Size.Take方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CalculatePageRowBounds
private PageRowBound[] CalculatePageRowBounds(Size[] singlePageBounds, ViewType viewType)
{
var pagesPerRow = Math.Min(GetPagesPerRow(), singlePageBounds.Length); // if multiple page-view, but pdf contains less pages than the pages per row
var finalBounds = new List<PageRowBound>();
var verticalBorderOffset = (this.PageMargin.Top + this.PageMargin.Bottom);
if (viewType == MoonPdfLib.ViewType.SinglePage)
{
finalBounds.AddRange(singlePageBounds.Select(p => new PageRowBound( p, verticalBorderOffset, 0)));
}
else
{
var horizontalBorderOffset = this.HorizontalMargin;
for (int i = 0; i < singlePageBounds.Length; i++)
{
if (i == 0 && viewType == MoonPdfLib.ViewType.BookView)
{
finalBounds.Add(new PageRowBound(singlePageBounds[0], verticalBorderOffset, 0));
continue;
}
var subset = singlePageBounds.Take(i, pagesPerRow).ToArray();
// we get the max page-height from all pages in the subset and the sum of all page widths of the subset plus the offset between the pages
finalBounds.Add(new PageRowBound(new Size(subset.Sum(f => f.Width), subset.Max(f => f.Height)), verticalBorderOffset, horizontalBorderOffset * (subset.Length - 1)));
i += (pagesPerRow - 1);
}
}
return finalBounds.ToArray();
}