ab56a9bcf7
SVN-Revision: r240
122 lines
4.9 KiB
C#
122 lines
4.9 KiB
C#
namespace Lskj_SynchronizeData
|
|
{
|
|
partial class FrMain
|
|
{
|
|
/// <summary>
|
|
/// 必需的设计器变量。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 清理所有正在使用的资源。
|
|
/// </summary>
|
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows 窗体设计器生成的代码
|
|
|
|
/// <summary>
|
|
/// 设计器支持所需的方法 - 不要
|
|
/// 使用代码编辑器修改此方法的内容。
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.txt_log = new System.Windows.Forms.TextBox();
|
|
this.pal_top = new System.Windows.Forms.Panel();
|
|
this.btnSuspend = new System.Windows.Forms.Button();
|
|
this.btnStart = new System.Windows.Forms.Button();
|
|
this.panel1.SuspendLayout();
|
|
this.pal_top.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.txt_log);
|
|
this.panel1.Controls.Add(this.pal_top);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(674, 479);
|
|
this.panel1.TabIndex = 0;
|
|
//
|
|
// txt_log
|
|
//
|
|
this.txt_log.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txt_log.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.txt_log.Font = new System.Drawing.Font("微软雅黑", 10F);
|
|
this.txt_log.Location = new System.Drawing.Point(0, 50);
|
|
this.txt_log.Multiline = true;
|
|
this.txt_log.Name = "txt_log";
|
|
this.txt_log.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
|
this.txt_log.Size = new System.Drawing.Size(674, 429);
|
|
this.txt_log.TabIndex = 2;
|
|
//
|
|
// pal_top
|
|
//
|
|
this.pal_top.Controls.Add(this.btnSuspend);
|
|
this.pal_top.Controls.Add(this.btnStart);
|
|
this.pal_top.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.pal_top.Location = new System.Drawing.Point(0, 0);
|
|
this.pal_top.Name = "pal_top";
|
|
this.pal_top.Size = new System.Drawing.Size(674, 50);
|
|
this.pal_top.TabIndex = 0;
|
|
//
|
|
// btnSuspend
|
|
//
|
|
this.btnSuspend.Font = new System.Drawing.Font("微软雅黑", 10F);
|
|
this.btnSuspend.Location = new System.Drawing.Point(122, 10);
|
|
this.btnSuspend.Name = "btnSuspend";
|
|
this.btnSuspend.Size = new System.Drawing.Size(75, 31);
|
|
this.btnSuspend.TabIndex = 1;
|
|
this.btnSuspend.Text = "暂停";
|
|
this.btnSuspend.UseVisualStyleBackColor = true;
|
|
this.btnSuspend.Click += new System.EventHandler(this.OnSuspendClick);
|
|
//
|
|
// btnStart
|
|
//
|
|
this.btnStart.Font = new System.Drawing.Font("微软雅黑", 10F);
|
|
this.btnStart.Location = new System.Drawing.Point(32, 10);
|
|
this.btnStart.Name = "btnStart";
|
|
this.btnStart.Size = new System.Drawing.Size(75, 31);
|
|
this.btnStart.TabIndex = 0;
|
|
this.btnStart.Text = "开始";
|
|
this.btnStart.UseVisualStyleBackColor = true;
|
|
this.btnStart.Click += new System.EventHandler(this.OnStartClick);
|
|
//
|
|
// FrMain
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(674, 479);
|
|
this.Controls.Add(this.panel1);
|
|
this.Font = new System.Drawing.Font("宋体", 10F);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Name = "FrMain";
|
|
this.Text = "同步数据";
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
this.pal_top.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Panel pal_top;
|
|
private System.Windows.Forms.Button btnSuspend;
|
|
private System.Windows.Forms.Button btnStart;
|
|
private System.Windows.Forms.TextBox txt_log;
|
|
|
|
}
|
|
}
|
|
|