| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- namespace PDFMonitor_SVG {
- partial class FormMain {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing) {
- if (disposing && (components != null)) {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent() {
- components = new System.ComponentModel.Container();
- btnStartService = new Button();
- btnStopService = new Button();
- timerGetTask = new System.Windows.Forms.Timer(components);
- memoLog = new ListBox();
- SuspendLayout();
- //
- // btnStartService
- //
- btnStartService.Location = new Point(12, 12);
- btnStartService.Name = "btnStartService";
- btnStartService.Size = new Size(75, 23);
- btnStartService.TabIndex = 0;
- btnStartService.Text = "启动服务";
- btnStartService.UseVisualStyleBackColor = true;
- btnStartService.Click += btnStartService_Click;
- //
- // btnStopService
- //
- btnStopService.Location = new Point(93, 12);
- btnStopService.Name = "btnStopService";
- btnStopService.Size = new Size(75, 23);
- btnStopService.TabIndex = 1;
- btnStopService.Text = "停止服务";
- btnStopService.UseVisualStyleBackColor = true;
- btnStopService.Click += btnStopService_Click;
- //
- // timerGetTask
- //
- timerGetTask.Interval = 2000;
- timerGetTask.Tick += TimerGetTask_Tick;
- //
- // memoLog
- //
- memoLog.FormattingEnabled = true;
- memoLog.ItemHeight = 17;
- memoLog.Location = new Point(12, 50);
- memoLog.Name = "memoLog";
- memoLog.Size = new Size(762, 395);
- memoLog.TabIndex = 5;
- //
- // FormMain
- //
- AutoScaleDimensions = new SizeF(7F, 17F);
- AutoScaleMode = AutoScaleMode.Font;
- ClientSize = new Size(786, 456);
- Controls.Add(memoLog);
- Controls.Add(btnStopService);
- Controls.Add(btnStartService);
- Name = "FormMain";
- Text = "PDF生成服务";
- ResumeLayout(false);
- }
- #endregion
- private Button btnStartService;
- private Button btnStopService;
- private System.Windows.Forms.Timer timerGetTask;
- private ListBox memoLog;
- }
- }
|