FormMain.Designer.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. namespace PDFMonitor_SVG {
  2. partial class FormMain {
  3. /// <summary>
  4. /// Required designer variable.
  5. /// </summary>
  6. private System.ComponentModel.IContainer components = null;
  7. /// <summary>
  8. /// Clean up any resources being used.
  9. /// </summary>
  10. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  11. protected override void Dispose(bool disposing) {
  12. if (disposing && (components != null)) {
  13. components.Dispose();
  14. }
  15. base.Dispose(disposing);
  16. }
  17. #region Windows Form Designer generated code
  18. /// <summary>
  19. /// Required method for Designer support - do not modify
  20. /// the contents of this method with the code editor.
  21. /// </summary>
  22. private void InitializeComponent() {
  23. components = new System.ComponentModel.Container();
  24. btnStartService = new Button();
  25. btnStopService = new Button();
  26. timerGetTask = new System.Windows.Forms.Timer(components);
  27. memoLog = new ListBox();
  28. SuspendLayout();
  29. //
  30. // btnStartService
  31. //
  32. btnStartService.Location = new Point(12, 12);
  33. btnStartService.Name = "btnStartService";
  34. btnStartService.Size = new Size(75, 23);
  35. btnStartService.TabIndex = 0;
  36. btnStartService.Text = "启动服务";
  37. btnStartService.UseVisualStyleBackColor = true;
  38. btnStartService.Click += btnStartService_Click;
  39. //
  40. // btnStopService
  41. //
  42. btnStopService.Location = new Point(93, 12);
  43. btnStopService.Name = "btnStopService";
  44. btnStopService.Size = new Size(75, 23);
  45. btnStopService.TabIndex = 1;
  46. btnStopService.Text = "停止服务";
  47. btnStopService.UseVisualStyleBackColor = true;
  48. btnStopService.Click += btnStopService_Click;
  49. //
  50. // timerGetTask
  51. //
  52. timerGetTask.Interval = 2000;
  53. timerGetTask.Tick += TimerGetTask_Tick;
  54. //
  55. // memoLog
  56. //
  57. memoLog.FormattingEnabled = true;
  58. memoLog.ItemHeight = 17;
  59. memoLog.Location = new Point(12, 50);
  60. memoLog.Name = "memoLog";
  61. memoLog.Size = new Size(762, 395);
  62. memoLog.TabIndex = 5;
  63. //
  64. // FormMain
  65. //
  66. AutoScaleDimensions = new SizeF(7F, 17F);
  67. AutoScaleMode = AutoScaleMode.Font;
  68. ClientSize = new Size(786, 456);
  69. Controls.Add(memoLog);
  70. Controls.Add(btnStopService);
  71. Controls.Add(btnStartService);
  72. Name = "FormMain";
  73. Text = "PDF生成服务";
  74. ResumeLayout(false);
  75. }
  76. #endregion
  77. private Button btnStartService;
  78. private Button btnStopService;
  79. private System.Windows.Forms.Timer timerGetTask;
  80. private ListBox memoLog;
  81. }
  82. }