87 lines
3.1 KiB
C#
87 lines
3.1 KiB
C#
namespace ConnectPoint
|
||
{
|
||
partial class MainForm
|
||
{
|
||
/// <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.components = new System.ComponentModel.Container();
|
||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
|
||
this.textBox2 = new System.Windows.Forms.TextBox();
|
||
this.timer2 = new System.Windows.Forms.Timer(this.components);
|
||
this.timer_Search = new System.Windows.Forms.Timer(this.components);
|
||
this.SuspendLayout();
|
||
//
|
||
// textBox1
|
||
//
|
||
this.textBox1.Location = new System.Drawing.Point(0, 0);
|
||
this.textBox1.Multiline = true;
|
||
this.textBox1.Name = "textBox1";
|
||
this.textBox1.Size = new System.Drawing.Size(414, 226);
|
||
this.textBox1.TabIndex = 0;
|
||
//
|
||
// notifyIcon1
|
||
//
|
||
this.notifyIcon1.Text = "notifyIcon1";
|
||
this.notifyIcon1.Visible = true;
|
||
//
|
||
// textBox2
|
||
//
|
||
this.textBox2.Location = new System.Drawing.Point(0, 273);
|
||
this.textBox2.Name = "textBox2";
|
||
this.textBox2.Size = new System.Drawing.Size(404, 21);
|
||
this.textBox2.TabIndex = 1;
|
||
//
|
||
// MainForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(416, 338);
|
||
this.Controls.Add(this.textBox2);
|
||
this.Controls.Add(this.textBox1);
|
||
this.Name = "MainForm";
|
||
this.Text = "检测数据";
|
||
this.Load += new System.EventHandler(this.MainForm_Load);
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox textBox1;
|
||
private System.Windows.Forms.Timer timer1;
|
||
private System.Windows.Forms.NotifyIcon notifyIcon1;
|
||
private System.Windows.Forms.TextBox textBox2;
|
||
private System.Windows.Forms.Timer timer2;
|
||
private System.Windows.Forms.Timer timer_Search;
|
||
|
||
}
|
||
}
|
||
|