📄 clientform.designer.cs
字号:
namespace FileClient
{
partial class ClientForm
{
/// <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.btnAction = new System.Windows.Forms.Button();
this.textBoxMsg = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.btnSend = new System.Windows.Forms.Button();
this.btnFileSend = new System.Windows.Forms.Button();
this.textBox_ServiceAddr = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnAction
//
this.btnAction.Location = new System.Drawing.Point(363, 28);
this.btnAction.Name = "btnAction";
this.btnAction.Size = new System.Drawing.Size(75, 23);
this.btnAction.TabIndex = 0;
this.btnAction.Text = "连接";
this.btnAction.UseVisualStyleBackColor = true;
this.btnAction.Click += new System.EventHandler(this.btnAction_Click);
//
// textBoxMsg
//
this.textBoxMsg.Location = new System.Drawing.Point(69, 91);
this.textBoxMsg.Name = "textBoxMsg";
this.textBoxMsg.Size = new System.Drawing.Size(276, 21);
this.textBoxMsg.TabIndex = 1;
this.textBoxMsg.Text = "yuan";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 94);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 2;
this.label1.Text = "文件目录";
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(363, 91);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(75, 23);
this.btnSend.TabIndex = 3;
this.btnSend.Text = "发送";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// btnFileSend
//
this.btnFileSend.Location = new System.Drawing.Point(69, 128);
this.btnFileSend.Name = "btnFileSend";
this.btnFileSend.Size = new System.Drawing.Size(141, 23);
this.btnFileSend.TabIndex = 4;
this.btnFileSend.Text = "文件发送...";
this.btnFileSend.UseVisualStyleBackColor = true;
this.btnFileSend.Click += new System.EventHandler(this.btnFileSend_Click);
//
// textBox_ServiceAddr
//
this.textBox_ServiceAddr.Location = new System.Drawing.Point(69, 30);
this.textBox_ServiceAddr.Name = "textBox_ServiceAddr";
this.textBox_ServiceAddr.Size = new System.Drawing.Size(276, 21);
this.textBox_ServiceAddr.TabIndex = 1;
this.textBox_ServiceAddr.Text = "net.tcp://localhost:8000/service/FileSave";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 33);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 2;
this.label2.Text = "服务地址";
//
// button1
//
this.button1.Location = new System.Drawing.Point(271, 128);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(94, 23);
this.button1.TabIndex = 5;
this.button1.Text = "test";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// ClientForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(467, 186);
this.Controls.Add(this.button1);
this.Controls.Add(this.btnFileSend);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox_ServiceAddr);
this.Controls.Add(this.textBoxMsg);
this.Controls.Add(this.btnAction);
this.Name = "ClientForm";
this.Text = "ClientForm";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ClientForm_FormClosed);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnAction;
private System.Windows.Forms.TextBox textBoxMsg;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnSend;
private System.Windows.Forms.Button btnFileSend;
private System.Windows.Forms.TextBox textBox_ServiceAddr;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button button1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -