VS_FileSendTool/FS/FileSend/Setting.Designer.cs

176 lines
7.5 KiB
C#

using Net;
namespace FileSend
{
partial class Setting
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button_General = new Button();
this.button_Server = new Button();
this.button_Client = new Button();
this.label_RootPath_Server = new Label();
this.textBox_RootPath_Server = new TextBox();
this.button_Choose_Server = new Button();
this.checkBox_SavePath_Client = new CheckBox();
this.checkBox_ShowLog_Client = new CheckBox();
this.SuspendLayout();
//
// button_General
//
this.button_General.Location = new Point(43, 24);
this.button_General.Name = "button_General";
this.button_General.Size = new Size(75, 23);
this.button_General.TabIndex = 0;
this.button_General.Text = "通用";
this.button_General.UseVisualStyleBackColor = true;
this.button_General.Click += this.button1_General_Click;
//
// button_Server
//
this.button_Server.Location = new Point(124, 24);
this.button_Server.Name = "button_Server";
this.button_Server.Size = new Size(75, 23);
this.button_Server.TabIndex = 1;
this.button_Server.Text = "服务器";
this.button_Server.UseVisualStyleBackColor = true;
this.button_Server.Click += this.button_Server_Click;
//
// button_Client
//
this.button_Client.Location = new Point(205, 24);
this.button_Client.Name = "button_Client";
this.button_Client.Size = new Size(75, 23);
this.button_Client.TabIndex = 2;
this.button_Client.Text = "客户端";
this.button_Client.UseVisualStyleBackColor = true;
this.button_Client.Click += this.button_Client_Click;
//
// label_RootPath_Server
//
this.label_RootPath_Server.AutoSize = true;
this.label_RootPath_Server.Location = new Point(43, 84);
this.label_RootPath_Server.Name = "label_RootPath_Server";
this.label_RootPath_Server.Size = new Size(56, 17);
this.label_RootPath_Server.TabIndex = 3;
this.label_RootPath_Server.Text = "根目录:";
this.label_RootPath_Server.Visible = false;
//
// textBox_RootPath_Server
//
this.textBox_RootPath_Server.Location = new Point(105, 81);
this.textBox_RootPath_Server.Multiline = true;
this.textBox_RootPath_Server.Name = "textBox_RootPath_Server";
this.textBox_RootPath_Server.Size = new Size(358, 56);
this.textBox_RootPath_Server.TabIndex = 4;
this.textBox_RootPath_Server.Text = "dsdsdssd\r\ndasdsa\r\nsdasd\r\n";
this.textBox_RootPath_Server.Visible = false;
this.textBox_RootPath_Server.TextChanged += this.textBox_RootPath_Server_TextChanged_1;
//
// button_Choose_Server
//
this.button_Choose_Server.Location = new Point(469, 81);
this.button_Choose_Server.Name = "button_Choose_Server";
this.button_Choose_Server.Size = new Size(70, 23);
this.button_Choose_Server.TabIndex = 5;
this.button_Choose_Server.Text = "快速选择";
this.button_Choose_Server.UseVisualStyleBackColor = true;
this.button_Choose_Server.Visible = false;
this.button_Choose_Server.Click += this.button_Choose_Server_Click;
//
// checkBox_SavePath_Client
//
this.checkBox_SavePath_Client.AutoSize = true;
this.checkBox_SavePath_Client.Location = new Point(43, 80);
this.checkBox_SavePath_Client.Name = "checkBox_SavePath_Client";
this.checkBox_SavePath_Client.Size = new Size(111, 21);
this.checkBox_SavePath_Client.TabIndex = 7;
this.checkBox_SavePath_Client.Text = "保存服务器地址";
this.checkBox_SavePath_Client.UseVisualStyleBackColor = true;
this.checkBox_SavePath_Client.Visible = false;
this.checkBox_SavePath_Client.CheckedChanged += this.checkBox_SavePath_Client_CheckedChanged_1;
//
// checkBox_ShowLog_Client
//
this.checkBox_ShowLog_Client.AutoSize = true;
this.checkBox_ShowLog_Client.Location = new Point(43, 119);
this.checkBox_ShowLog_Client.Name = "checkBox_ShowLog_Client";
this.checkBox_ShowLog_Client.Size = new Size(99, 21);
this.checkBox_ShowLog_Client.TabIndex = 8;
this.checkBox_ShowLog_Client.Text = "显示详细日志";
this.checkBox_ShowLog_Client.UseVisualStyleBackColor = true;
this.checkBox_ShowLog_Client.Visible = false;
this.checkBox_ShowLog_Client.CheckedChanged += this.checkBox_ShowLog_Client_CheckedChanged_1;
//
// Setting
//
this.AutoScaleDimensions = new SizeF(7F, 17F);
this.AutoScaleMode = AutoScaleMode.Font;
this.ClientSize = new Size(800, 450);
this.Controls.Add(this.checkBox_ShowLog_Client);
this.Controls.Add(this.checkBox_SavePath_Client);
this.Controls.Add(this.button_Choose_Server);
this.Controls.Add(this.textBox_RootPath_Server);
this.Controls.Add(this.label_RootPath_Server);
this.Controls.Add(this.button_Client);
this.Controls.Add(this.button_Server);
this.Controls.Add(this.button_General);
this.Name = "Setting";
this.Text = "设置";
this.ResumeLayout(false);
this.PerformLayout();
}
private void checkBox_ShowLog_Client_CheckedChanged_1(object sender, EventArgs e)
{
NetHelper.IsShowLog = checkBox_ShowLog_Client.Checked;
}
private void checkBox_SavePath_Client_CheckedChanged_1(object sender, EventArgs e)
{
NetHelper.IsSaveServerIP = checkBox_SavePath_Client.Checked;
}
private void textBox_RootPath_Server_TextChanged_1(object sender, EventArgs e)
{
NetHelper.ServerRootPath = textBox_RootPath_Server.Text;
}
#endregion
private Button button_General;
private Button button_Server;
private Button button_Client;
private Label label_RootPath_Server;
private TextBox textBox_RootPath_Server;
private Button button_Choose_Server;
private CheckBox checkBox_SavePath_Client;
private CheckBox checkBox_ShowLog_Client;
}
}