namespace PDFMonitor_SVG {
partial class FormMain {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
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;
}
}