81 lines
3.0 KiB
C#
81 lines
3.0 KiB
C#
namespace SocketTransfer
|
||
{
|
||
partial class Main
|
||
{
|
||
/// <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()
|
||
{
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
|
||
this.BtnSend = new System.Windows.Forms.Button();
|
||
this.BtnListen = new System.Windows.Forms.Button();
|
||
this.SuspendLayout();
|
||
//
|
||
// BtnSend
|
||
//
|
||
this.BtnSend.Location = new System.Drawing.Point(13, 91);
|
||
this.BtnSend.Margin = new System.Windows.Forms.Padding(4);
|
||
this.BtnSend.Name = "BtnSend";
|
||
this.BtnSend.Size = new System.Drawing.Size(277, 76);
|
||
this.BtnSend.TabIndex = 1;
|
||
this.BtnSend.Text = "发 送";
|
||
this.BtnSend.UseVisualStyleBackColor = true;
|
||
this.BtnSend.Click += new System.EventHandler(this.BtnSend_Click);
|
||
//
|
||
// BtnListen
|
||
//
|
||
this.BtnListen.Location = new System.Drawing.Point(13, 7);
|
||
this.BtnListen.Margin = new System.Windows.Forms.Padding(4);
|
||
this.BtnListen.Name = "BtnListen";
|
||
this.BtnListen.Size = new System.Drawing.Size(277, 76);
|
||
this.BtnListen.TabIndex = 2;
|
||
this.BtnListen.Text = "监 听";
|
||
this.BtnListen.UseVisualStyleBackColor = true;
|
||
this.BtnListen.Click += new System.EventHandler(this.BtnListen_Click);
|
||
//
|
||
// Main
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(298, 180);
|
||
this.Controls.Add(this.BtnSend);
|
||
this.Controls.Add(this.BtnListen);
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.Name = "Main";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "Main";
|
||
this.Load += new System.EventHandler(this.Main_Load);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button BtnSend;
|
||
private System.Windows.Forms.Button BtnListen;
|
||
}
|
||
}
|
||
|