123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Media;
- namespace PDF_Office.Helper
- {
- /// <summary>
- /// 1 FindVisualParent 查找目标类型的父类控件
- /// 2 FindVisualChild 查找目标类型的子类控件
- /// 3 GetPageParmFromList 从页码集合获取页码字符串,如1,2,3 转换成1-3
- /// 4 GetPagesInRange 校验PageRange 输入是否合法,且可返回List<int> Pages 存放的索引值
- /// </summary>
- public static class CommonHelper
- {
- /// <summary>
- /// 查找对象目标类型的父类控件
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="obj"></param>
- /// <returns></returns>
- public static T FindVisualParent<T>(DependencyObject obj) where T : class
- {
- try
- {
- while (obj != null)
- {
- if (obj is T)
- return obj as T;
- obj = VisualTreeHelper.GetParent(obj);
- }
- return null;
- }
- catch { return null; }
- }
- /// <summary>
- /// 根据对象查找目标类型的子类
- /// </summary>
- /// <typeparam name="childItem"></typeparam>
- /// <param name="obj"></param>
- /// <returns></returns>
- public static childItem FindVisualChild<childItem>(DependencyObject obj)
- where childItem : DependencyObject
- {
- try
- {
- for (int i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)
- {
- DependencyObject child = VisualTreeHelper.GetChild(obj, i);
- if (child != null && child is childItem)
- return (childItem)child;
- else
- {
- childItem childOfChild = FindVisualChild<childItem>(child);
- if (childOfChild != null)
- return childOfChild;
- }
- }
- return null;
- }
- catch { return null; }
- }
- /// <summary>
- /// 从页码集合获取页码字符串,如1,2,3 转换成1-3
- /// </summary>
- /// <param name="pagesList"></param>
- /// <returns></returns>
- public static string GetPageParmFromList(List<int> pagesList)
- {
- string pageParam = "";
- if (pagesList.Count != 0)
- {
- pagesList.Sort();//先对页码排序
- for (int i = 0; i < pagesList.Count; i++)
- {
- if (i == 0)
- {
- pageParam += pagesList[0].ToString();
- }
- else
- {
- if (pagesList[i] == pagesList[i - 1] + 1)//页码连续
- {
- if (i >= 2)
- {
- if (pagesList[i - 1] != pagesList[i - 2] + 1)
- pageParam += "-";
- }
- else
- pageParam += "-";
- if (i == pagesList.Count - 1)
- {
- pageParam += pagesList[i].ToString();
- }
- }
- else//页码不连续时
- {
- if (i >= 2)
- {
- if (pagesList[i - 1] == pagesList[i - 2] + 1)
- pageParam += pagesList[i - 1].ToString();
- }
- pageParam += "," + pagesList[i].ToString();
- }
- }
- }
- }
- return pageParam;
- }
- /// <summary>
- /// 校验PageRange 输入是否合法,且可返回List<int> Pages 存放的索引值
- /// </summary>
- /// <param name="pageIndexList">返回的页面索引集合</param>
- /// <param name="pageRange">需要判断的文本</param>
- /// <param name="count">页面总数</param>
- /// <param name="enumerationSeparator">例 new char[] { ',' }</param>
- /// <param name="rangeSeparator">例 new char[] { '-' }</param>
- /// <param name="inittag"></param>
- /// <returns></returns>
- public static bool GetPagesInRange(ref List<int> pageIndexList, string pageRange, int count, char[] enumerationSeparator, char[] rangeSeparator, bool inittag = false)
- {
- string[] rangeSplit = pageRange.Split(enumerationSeparator);//根据分隔符 拆分字符串
- pageIndexList.Clear();
- foreach (string range in rangeSplit)
- {
- int starttag = 1;
- if (inittag)
- {
- starttag = 0;
- }
- if (range.Contains("-"))//连续页
- {
- try
- {
- string[] limits = range.Split(rangeSeparator);//对子字符串再根据”-“ 拆分
- if (limits.Length >= 2 && !string.IsNullOrWhiteSpace(limits[0]) && !string.IsNullOrWhiteSpace(limits[1]))
- {
- int start = int.Parse(limits[0]);
- int end = int.Parse(limits[1]);
- if ((start < starttag) || (end > count) || (start > end))
- {
- return false;
- }
- for (int i = start; i <= end; ++i)
- {
- if (pageIndexList.Contains(i))
- {
- return false;
- }
- pageIndexList.Add(i - 1);
- }
- continue;
- }
- }
- catch
- {
- return false;
- }
- }
- int pageNr;
- try
- {
- // Single page
- pageNr = int.Parse(range);//单页
- }
- catch//格式不正确时
- {
- return false;
- }
- if (pageNr < starttag || pageNr > count)
- {
- return false;
- }
- if (pageIndexList.Contains(pageNr))
- {
- return false;
- }
- pageIndexList.Add(pageNr - 1);
- }
- return true;
- }
- }
- }
|