PDFOperater.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using UAS_MES.PublicMethod;
  10. namespace UAS_MES.CustomControl
  11. {
  12. public partial class PDFOperater : UserControl
  13. {
  14. //private PDFPageView PageView1;
  15. //public PDFPageView PageView
  16. //{
  17. // get
  18. // {
  19. // return PageView1;
  20. // }
  21. // set
  22. // {
  23. // PageView1 = value;
  24. // }
  25. //}
  26. //public PDFOperater()
  27. //{
  28. // InitializeComponent();
  29. // for (int i = 1; i <= 20; i++)
  30. // {
  31. // ZoomComBox.Items.Add(i * 10);
  32. // }
  33. //}
  34. //private void PDFOperater_Load(object sender, EventArgs e)
  35. //{
  36. // PageView1.Zoom = double.Parse(ZoomComBox.Text);
  37. //}
  38. //private void ZoomComBox_SelectedIndexChanged(object sender, EventArgs e)
  39. //{
  40. // PageView1.Zoom = double.Parse(ZoomComBox.Text);
  41. //}
  42. //private void ZoomComBox_KeyDown(object sender, KeyEventArgs e)
  43. //{
  44. // if (e.KeyCode == Keys.Enter)
  45. // {
  46. // PageView1.Zoom = double.Parse(ZoomComBox.Text);
  47. // }
  48. //}
  49. //private void ScrollSpan_KeyDown(object sender, KeyEventArgs e)
  50. //{
  51. // if (e.KeyCode == Keys.Enter)
  52. // {
  53. // ScrollTimer.Interval = int.Parse(ScrollSpan.Text) * 1000;
  54. // ScrollTimer.Start();
  55. // BaseUtil.SetCacheData("ScrollSpan", ScrollSpan.Text);
  56. // }
  57. //}
  58. //private void ScrollTimer_Tick(object sender, EventArgs e)
  59. //{
  60. // if (PageView1.Document.PageCount - 1 == PageView1.PageNumber)
  61. // {
  62. // PageView1.GoToFirstPage();
  63. // }
  64. // else
  65. // {
  66. // PageView1.GoToNextPage();
  67. // }
  68. //}
  69. //private void toolStripTextBox1_KeyDown(object sender, KeyEventArgs e)
  70. //{
  71. // if (e.KeyCode == Keys.Enter)
  72. // {
  73. // PageView1.SearchText(KeyWord.Text, PDFHighlightSearchResultsMode.AllResults);
  74. // }
  75. //}
  76. }
  77. }