|
|
namespace TestDrawerInteract
|
|
|
{
|
|
|
partial class FormMain
|
|
|
{
|
|
|
/// <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.btnGetData = new System.Windows.Forms.Button();
|
|
|
this.txtGetData = new System.Windows.Forms.TextBox();
|
|
|
this.btnSendData = new System.Windows.Forms.Button();
|
|
|
this.txtSendData = new System.Windows.Forms.TextBox();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
// btnGetData
|
|
|
//
|
|
|
this.btnGetData.Location = new System.Drawing.Point(77, 118);
|
|
|
this.btnGetData.Name = "btnGetData";
|
|
|
this.btnGetData.Size = new System.Drawing.Size(174, 62);
|
|
|
this.btnGetData.TabIndex = 0;
|
|
|
this.btnGetData.Text = "获取数据";
|
|
|
this.btnGetData.UseVisualStyleBackColor = true;
|
|
|
this.btnGetData.Click += new System.EventHandler(this.btnGetData_Click);
|
|
|
//
|
|
|
// txtGetData
|
|
|
//
|
|
|
this.txtGetData.Location = new System.Drawing.Point(278, 118);
|
|
|
this.txtGetData.Multiline = true;
|
|
|
this.txtGetData.Name = "txtGetData";
|
|
|
this.txtGetData.Size = new System.Drawing.Size(523, 241);
|
|
|
this.txtGetData.TabIndex = 1;
|
|
|
//
|
|
|
// btnSendData
|
|
|
//
|
|
|
this.btnSendData.Location = new System.Drawing.Point(77, 438);
|
|
|
this.btnSendData.Name = "btnSendData";
|
|
|
this.btnSendData.Size = new System.Drawing.Size(174, 62);
|
|
|
this.btnSendData.TabIndex = 0;
|
|
|
this.btnSendData.Text = "发送数据";
|
|
|
this.btnSendData.UseVisualStyleBackColor = true;
|
|
|
this.btnSendData.Click += new System.EventHandler(this.btnSendData_Click);
|
|
|
//
|
|
|
// txtSendData
|
|
|
//
|
|
|
this.txtSendData.Location = new System.Drawing.Point(278, 438);
|
|
|
this.txtSendData.Multiline = true;
|
|
|
this.txtSendData.Name = "txtSendData";
|
|
|
this.txtSendData.Size = new System.Drawing.Size(512, 233);
|
|
|
this.txtSendData.TabIndex = 1;
|
|
|
this.txtSendData.Text = "发送数据到图形";
|
|
|
//
|
|
|
// FormMain
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
this.ClientSize = new System.Drawing.Size(992, 721);
|
|
|
this.Controls.Add(this.txtSendData);
|
|
|
this.Controls.Add(this.txtGetData);
|
|
|
this.Controls.Add(this.btnSendData);
|
|
|
this.Controls.Add(this.btnGetData);
|
|
|
this.Name = "FormMain";
|
|
|
this.Text = "Form1";
|
|
|
this.ResumeLayout(false);
|
|
|
this.PerformLayout();
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
private System.Windows.Forms.Button btnGetData;
|
|
|
private System.Windows.Forms.TextBox txtGetData;
|
|
|
private System.Windows.Forms.Button btnSendData;
|
|
|
private System.Windows.Forms.TextBox txtSendData;
|
|
|
}
|
|
|
}
|
|
|
|