123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- using Common.system;
-
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Threading;
- using System.Windows;
- using System.Windows.Input;
- using System.Windows.Media.Imaging;
- using System.Windows.Threading;
-
- namespace XHWK.WKTool
- {
- /// <summary>
- /// 打印
- /// </summary>
- public partial class PrintWindow : Window
- {
- /// <summary>
- /// 下拉框数据源
- /// </summary>
- public DataTable data = new DataTable();
- private DataTable dtComponentsUniqueNo;
- /// <summary>
- /// 计时器状态
- /// </summary>
- private enum State
- {
- Start,
- Pause,
- End
- }
- private DispatcherTimer t = null;
- /// <summary>
- /// 状态
- /// </summary>
- private State _state = State.End;
- /// <summary>
- /// 计时用
- /// </summary>
- private TimeSpan _timeSpan = new TimeSpan(0, 0, 0, 0, 0);
- public PrintWindow()
- {
- InitializeComponent();
- double proportion = 1036.0 / 1290.0;
- double Widths = (PrimaryScreen.ScaleWorkingAreaSize.Height) / proportion - (BorderThickness.Left + BorderThickness.Right);
- double Heights = PrimaryScreen.ScaleWorkingAreaSize.Height - (BorderThickness.Top + BorderThickness.Bottom);
- Width = Widths / 1.42;
- Height = Heights / 1.71;
- GridContent.Width = Width+5;
- GridContent.Height = Height;
- this.ResizeMode = ResizeMode.NoResize;
- string defa = string.Empty;
- List<string> defaList = LatticeFileHelper.GetPrinterList(out defa);
- if (defaList.Count > 0)
- {
- data.Columns.Add("Value");
- data.Columns.Add("Key");
- for (int i = 0; i < defaList.Count; i++)
- {
- //创建一行
- DataRow row = data.NewRow();
- //将此行添加到table中
- data.Rows.Add(row);
- data.Rows[i]["Value"] = defaList[i];
- data.Rows[i]["Key"] = i.ToString();
- }
- dtComponentsUniqueNo = data.DefaultView.ToTable();
- cmbClass.ItemsSource = dtComponentsUniqueNo.DefaultView;
- cmbClass.SelectedIndex = 0;
- }
- }
- public void Initialize(string _imgPath)
- {
- if (!string.IsNullOrWhiteSpace(_imgPath))
- {
- imgPri.Source = new BitmapImage(new Uri(_imgPath));
- }
- I = 0;
- if (t == null)
- {
- t = new DispatcherTimer();
- t.Tick += OnTimer;
- t.Interval = new TimeSpan(0, 0, 0, 1);
- t.IsEnabled = true;
- t.Start();
- }
- t.Interval = new TimeSpan(0, 0, 0, 1);
- tip_outer.Visibility = Visibility.Collapsed;
- }
- private System.Timers.Timer times;
- /// <summary>
- /// 打印
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void BtnPrint_Click(object sender, RoutedEventArgs e)
- {
- if (string.IsNullOrWhiteSpace(cmbClass.Text))
- {
- //MessageWindow.Show("打印机不能为空!");
- MessageWindow.Show("打印机不能为空!");
- return;
- }
- APP.myloading.Show();
- APP.BackgroundWorkerHelper.RunWorkerAsync(InvokeServering, InvokeServerCompate);
-
-
-
-
- //I = 1;
- //APP.myloading.Show();
- //tip_outer.Visibility = Visibility.Visible;
- //Thread.Sleep(2000);
- //Times();
- //Dispatcher.Invoke(() =>
- //{
- // times = new System.Timers.Timer(100)//初始值为300
- // {
- // AutoReset = true//设置是否执行System.Timers.Timer.Elapsed事件
- // };//设置执行一次(false)还是一直执行(true)
- // I = 0;
- // tip_outer.Visibility = Visibility.Visible;
- // times.Elapsed += new System.Timers.ElapsedEventHandler(Times_Elapsed);
- // times.Enabled = true; //启动计时器
- // //APP.myloading.Show();
- //});
-
-
-
- //string imgPath = FileToolsCommon.GetFileAbsolutePath("temp");
- //FileToolsCommon.CreateFile(imgPath);
- //string pdf = imgPath + "\\101.pdf";
- //string tpf = imgPath + "\\102.TPF";
- //string msg = string.Empty;
- //string outPut = string.Empty;
- ////if(rbnSquarePoint.IsChecked==false)
- ////{
- //// pyte = 1;
- ////}
- //LatticeFileHelper.GeneratingPDF(pdf, tpf, out int pr, out msg, out outPut/*, pyte*/);
- //if (pr == 0)
- //{
- // //outPut = outPut.Replace("[", "").Replace("]", "").Replace("\"", "").Trim();
- // //APP.OutPut = outPut.Split(',');
- // //string []page= outPut.Split(',');
- // //for(int i=0;i<page.Length;i++) //增加页码编号
- // //{
- // // APP.PageDrawList[i].PageCode = page[i];
- // //}
-
- // //string defa = string.Empty;
- // //List<string> defaList = LatticeFileHelper.GetPrinterList(out defa);
-
- // string standardError = string.Empty;
- // string standardOutput = string.Empty;
- // int frequency = Convert.ToInt32(txbNumberOfCopies.Text);
- // //for (int i=0;i< frequency;i++)
- // //{
- // LatticeFileHelper.PrinterTPFFile(tpf, frequency, cmbClass.Text, out int printResult, out standardError, out standardOutput);
- // //}
- // if (printResult == 0)// 0为成功
- // {
- // new Thread(new ThreadStart(new Action(() =>
- // {
- // Dispatcher.Invoke(() =>
- // {
- // I = 100;
- // pgbProcess.Value = I * 100 / 100;
- // lbProcess.Content = string.Format("{0}/{1}", I, 100);
- // APP.myloading.Hide();
- // I = 0;
- // });
- // Thread.Sleep(2000);
- // Dispatcher.Invoke(() =>
- // {
- // //tip_outer.Visibility = Visibility.Collapsed;
- // MessageWindow.Show("打印成功");
- // });
- // }))).Start();
-
-
-
-
-
- // }
- // else
- // {
- // APP.myloading.Hide();
- // MessageWindow.Show(standardError);
- // }
- //}
- //else
- //{
- // APP.myloading.Hide();
- // MessageWindow.Show(msg);
- //}
- }
- /// <summary>
- /// 打印-开始
- /// </summary>
- /// <returns></returns>
- private object InvokeServering()
- {
- Dispatcher.Invoke(() =>
- {
- I = 1;
- pgbProcess.Value = I * 100 / 100;
- lbProcess.Content = string.Format("{0}/{1}", I, 100);
- tip_outer.Visibility = Visibility.Visible;
- //I = 0;
- });
- Thread.Sleep(2000);
-
- string imgPath = FileToolsCommon.GetFileAbsolutePath("temp");
- FileToolsCommon.CreateFile(imgPath);
- string pdf = imgPath + "\\101.pdf";
- string tpf = imgPath + "\\102.TPF";
- string msg = string.Empty;
- string outPut = string.Empty;
- //if(rbnSquarePoint.IsChecked==false)
- //{
- // pyte = 1;
- //}
- LatticeFileHelper.GeneratingPDF(pdf, tpf, out int pr, out msg, out outPut/*, pyte*/);
- if (pr == 0)
- {
- //outPut = outPut.Replace("[", "").Replace("]", "").Replace("\"", "").Trim();
- //APP.OutPut = outPut.Split(',');
- //string []page= outPut.Split(',');
- //for(int i=0;i<page.Length;i++) //增加页码编号
- //{
- // APP.PageDrawList[i].PageCode = page[i];
- //}
-
- //string defa = string.Empty;
- //List<string> defaList = LatticeFileHelper.GetPrinterList(out defa);
-
- string standardError = string.Empty;
- string standardOutput = string.Empty;
- int frequency = 1;
- Dispatcher.Invoke(() =>
- {
- frequency = Convert.ToInt32(txbNumberOfCopies.Text);
- LatticeFileHelper.PrinterTPFFile(tpf, frequency, cmbClass.Text, out int printResult, out standardError, out standardOutput);
- if (printResult == 0)// 0为成功
- {
- new Thread(new ThreadStart(new Action(() =>
- {
- Dispatcher.Invoke(() =>
- {
- I = 100;
- pgbProcess.Value = I * 100 / 100;
- lbProcess.Content = string.Format("{0}/{1}", I, 100);
- APP.myloading.Hide();
- I = 0;
- });
- Thread.Sleep(3000);
- Dispatcher.Invoke(() =>
- {
- tip_outer.Visibility = Visibility.Collapsed;
- //tip_outer.Visibility = Visibility.Collapsed;
- MessageWindow.Show("打印成功");
- });
- }))).Start();
- }
- else
- {
- APP.myloading.Hide();
- MessageWindow.Show(standardError);
- }
- });
-
- }
- else
- {
- APP.myloading.Hide();
- MessageWindow.Show(msg);
- }
- return "";
- }
- /// <summary>
- /// 打印-结束
- /// </summary>
- /// <returns></returns>
- public void InvokeServerCompate(object obj)
- {
- APP.myloading.Hide();
- }
- /// <summary>
- /// 时钟回调
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void OnTimer(object sender, EventArgs e)
- {
- switch (_state)
- {
- case State.Start:
- {
- _timeSpan += new TimeSpan(0, 0, 0, 1);
- }
- break;
-
- case State.Pause:
- {
- }
- break;
-
- case State.End:
- {
- _timeSpan = new TimeSpan();
- //_timeSpan = new TimeSpan(0, 23, 12, 45, 54);
- }
- break;
- }
-
- string time = string.Format("{0:D2}:{1:D2}",/* _timeSpan.Hours,*/ _timeSpan.Minutes, _timeSpan.Seconds);
- if(I < 90 && I != 0)
- {
- Dispatcher.Invoke(() =>
- {
-
- pgbProcess.Value = I * 100 / 100;
- lbProcess.Content = string.Format("{0}/{1}", I, 100);
- if (I == 1)
- {
- I = 30;
- }
- else
- {
- I += 30;
- }
- });
- }
- }
- private void Times()
- {
- Dispatcher.Invoke(() =>
- {
- while (I <= 90&&I!=0)
- {
- pgbProcess.Value = I * 100 / 100;
- lbProcess.Content = string.Format("{0}/{1}", I, 100);
- Thread.Sleep(100);
- I++;
- }
- });
- }
-
- private int I = 0;
- private void Times_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
- {
- Dispatcher.Invoke(() =>
- {
- if (I <= 90)
- {
- try
- {
- pgbProcess.Value = I * 100 / 100;
- lbProcess.Content = string.Format("{0}/{1}", I, 100);
- I++;
- }
- catch (Exception ex)
- {
- LogHelper.WriteErrLog("【摄像】(Times_Elapsed)生成图片错误:" + ex.Message, ex);
- }
- }
- });
- }
- /// <summary>
- /// 窗口移动
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
- {
- DragMove();
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void BtnClose_Click(object sender, RoutedEventArgs e)
- {
- Hide();
- }
- /// <summary>
- /// 减
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void BtnLess_Click(object sender, RoutedEventArgs e)
- {
- int num = Convert.ToInt32(txbNumberOfCopies.Text);
- if (num > 1)
- {
- num = num - 1;
- txbNumberOfCopies.Text = num.ToString();
- }
- }
- /// <summary>
- /// 新增
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void BtnAdd_Click(object sender, RoutedEventArgs e)
- {
- int num = Convert.ToInt32(txbNumberOfCopies.Text);
- if (num > 0)
- {
- num = num + 1;
- txbNumberOfCopies.Text = num.ToString();
- }
- }
-
- private void Window_MouseLeftButtonDown_1(object sender, MouseButtonEventArgs e)
- {
-
- }
- }
- }
|