AutoPackage/AutoPekage/frmSettings.Designer.cs

330 lines
15 KiB
C#
Raw Normal View History

2017-02-05 15:30:23 +08:00
namespace AutoPekage
{
partial class frmSettings
{
/// <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.label1 = new System.Windows.Forms.Label();
this.txtPackageName = new System.Windows.Forms.TextBox();
this.rbLoad = new System.Windows.Forms.RadioButton();
this.cbSendMail = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.rbUnload = new System.Windows.Forms.RadioButton();
this.cbAskLoad = new System.Windows.Forms.CheckBox();
this.label2 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.rbUnDelete = new System.Windows.Forms.RadioButton();
this.cbAskDelete = new System.Windows.Forms.CheckBox();
this.rbDelete = new System.Windows.Forms.RadioButton();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label3 = new System.Windows.Forms.Label();
this.rbFileName = new System.Windows.Forms.RadioButton();
this.rbCustom = new System.Windows.Forms.RadioButton();
this.txtTitle = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 19);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(101, 12);
this.label1.TabIndex = 0;
this.label1.Text = "默认打包文件名:";
//
// txtPackageName
//
this.txtPackageName.Location = new System.Drawing.Point(117, 17);
this.txtPackageName.Margin = new System.Windows.Forms.Padding(2);
this.txtPackageName.Name = "txtPackageName";
this.txtPackageName.Size = new System.Drawing.Size(140, 21);
this.txtPackageName.TabIndex = 1;
//
// rbLoad
//
this.rbLoad.AutoSize = true;
this.rbLoad.Location = new System.Drawing.Point(130, 18);
this.rbLoad.Margin = new System.Windows.Forms.Padding(2);
this.rbLoad.Name = "rbLoad";
this.rbLoad.Size = new System.Drawing.Size(47, 16);
this.rbLoad.TabIndex = 2;
this.rbLoad.TabStop = true;
this.rbLoad.Text = "加载";
this.rbLoad.UseVisualStyleBackColor = true;
//
// cbSendMail
//
this.cbSendMail.AutoSize = true;
this.cbSendMail.Location = new System.Drawing.Point(112, 15);
this.cbSendMail.Margin = new System.Windows.Forms.Padding(2);
this.cbSendMail.Name = "cbSendMail";
this.cbSendMail.Size = new System.Drawing.Size(108, 16);
this.cbSendMail.TabIndex = 3;
this.cbSendMail.Text = "是否勾选发邮件";
this.cbSendMail.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.rbUnload);
this.groupBox1.Controls.Add(this.cbAskLoad);
this.groupBox1.Controls.Add(this.rbLoad);
this.groupBox1.Location = new System.Drawing.Point(11, 42);
this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
this.groupBox1.Size = new System.Drawing.Size(244, 38);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "自动加载临时目录文件";
//
// rbUnload
//
this.rbUnload.AutoSize = true;
this.rbUnload.Location = new System.Drawing.Point(181, 19);
this.rbUnload.Margin = new System.Windows.Forms.Padding(2);
this.rbUnload.Name = "rbUnload";
this.rbUnload.Size = new System.Drawing.Size(59, 16);
this.rbUnload.TabIndex = 8;
this.rbUnload.TabStop = true;
this.rbUnload.Text = "不加载";
this.rbUnload.UseVisualStyleBackColor = true;
//
// cbAskLoad
//
this.cbAskLoad.AutoSize = true;
this.cbAskLoad.Location = new System.Drawing.Point(4, 18);
this.cbAskLoad.Margin = new System.Windows.Forms.Padding(2);
this.cbAskLoad.Name = "cbAskLoad";
this.cbAskLoad.Size = new System.Drawing.Size(96, 16);
this.cbAskLoad.TabIndex = 7;
this.cbAskLoad.Text = "询问是否加载";
this.cbAskLoad.UseVisualStyleBackColor = true;
this.cbAskLoad.CheckedChanged += new System.EventHandler(this.cbAskLoad_CheckedChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(4, 16);
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(101, 12);
this.label2.TabIndex = 5;
this.label2.Text = "勾选自动发邮件:";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.rbUnDelete);
this.groupBox2.Controls.Add(this.cbAskDelete);
this.groupBox2.Controls.Add(this.rbDelete);
this.groupBox2.Location = new System.Drawing.Point(11, 84);
this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
this.groupBox2.Size = new System.Drawing.Size(244, 40);
this.groupBox2.TabIndex = 9;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "自动删除临时目录文件";
//
// rbUnDelete
//
this.rbUnDelete.AutoSize = true;
this.rbUnDelete.Location = new System.Drawing.Point(181, 18);
this.rbUnDelete.Margin = new System.Windows.Forms.Padding(2);
this.rbUnDelete.Name = "rbUnDelete";
this.rbUnDelete.Size = new System.Drawing.Size(59, 16);
this.rbUnDelete.TabIndex = 8;
this.rbUnDelete.TabStop = true;
this.rbUnDelete.Text = "不删除";
this.rbUnDelete.UseVisualStyleBackColor = true;
//
// cbAskDelete
//
this.cbAskDelete.AutoSize = true;
this.cbAskDelete.Location = new System.Drawing.Point(4, 18);
this.cbAskDelete.Margin = new System.Windows.Forms.Padding(2);
this.cbAskDelete.Name = "cbAskDelete";
this.cbAskDelete.Size = new System.Drawing.Size(96, 16);
this.cbAskDelete.TabIndex = 7;
this.cbAskDelete.Text = "询问是否删除";
this.cbAskDelete.UseVisualStyleBackColor = true;
this.cbAskDelete.CheckedChanged += new System.EventHandler(this.cbAskDelete_CheckedChanged);
//
// rbDelete
//
this.rbDelete.AutoSize = true;
this.rbDelete.Location = new System.Drawing.Point(130, 18);
this.rbDelete.Margin = new System.Windows.Forms.Padding(2);
this.rbDelete.Name = "rbDelete";
this.rbDelete.Size = new System.Drawing.Size(47, 16);
this.rbDelete.TabIndex = 2;
this.rbDelete.TabStop = true;
this.rbDelete.Text = "删除";
this.rbDelete.UseVisualStyleBackColor = true;
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(41, 219);
this.btnOK.Margin = new System.Windows.Forms.Padding(2);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 10;
this.btnOK.Text = "确定";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(162, 219);
this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 11;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.txtTitle);
this.groupBox3.Controls.Add(this.rbCustom);
this.groupBox3.Controls.Add(this.rbFileName);
this.groupBox3.Controls.Add(this.label3);
this.groupBox3.Controls.Add(this.label2);
this.groupBox3.Controls.Add(this.cbSendMail);
this.groupBox3.Location = new System.Drawing.Point(11, 128);
this.groupBox3.Margin = new System.Windows.Forms.Padding(2);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Padding = new System.Windows.Forms.Padding(2);
this.groupBox3.Size = new System.Drawing.Size(244, 87);
this.groupBox3.TabIndex = 10;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "邮件相关";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(4, 38);
this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 6;
this.label3.Text = "邮件标题:";
//
// rbFileName
//
this.rbFileName.AutoSize = true;
this.rbFileName.Location = new System.Drawing.Point(85, 36);
this.rbFileName.Margin = new System.Windows.Forms.Padding(2);
this.rbFileName.Name = "rbFileName";
this.rbFileName.Size = new System.Drawing.Size(59, 16);
this.rbFileName.TabIndex = 9;
this.rbFileName.TabStop = true;
this.rbFileName.Text = "文件名";
this.rbFileName.UseVisualStyleBackColor = true;
//
// rbCustom
//
this.rbCustom.AutoSize = true;
this.rbCustom.Location = new System.Drawing.Point(157, 36);
this.rbCustom.Margin = new System.Windows.Forms.Padding(2);
this.rbCustom.Name = "rbCustom";
this.rbCustom.Size = new System.Drawing.Size(83, 16);
this.rbCustom.TabIndex = 10;
this.rbCustom.TabStop = true;
this.rbCustom.Text = "自定义内容";
this.rbCustom.UseVisualStyleBackColor = true;
this.rbCustom.CheckedChanged += new System.EventHandler(this.rbCustom_CheckedChanged);
//
// txtTitle
//
this.txtTitle.Enabled = false;
this.txtTitle.Location = new System.Drawing.Point(4, 56);
this.txtTitle.Margin = new System.Windows.Forms.Padding(2);
this.txtTitle.Name = "txtTitle";
this.txtTitle.Size = new System.Drawing.Size(236, 21);
this.txtTitle.TabIndex = 12;
//
// frmSettings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(270, 249);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.txtPackageName);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Margin = new System.Windows.Forms.Padding(2);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmSettings";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "设置";
this.Load += new System.EventHandler(this.frmSettings_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtPackageName;
private System.Windows.Forms.RadioButton rbLoad;
private System.Windows.Forms.CheckBox cbSendMail;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.RadioButton rbUnload;
private System.Windows.Forms.CheckBox cbAskLoad;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.RadioButton rbUnDelete;
private System.Windows.Forms.CheckBox cbAskDelete;
private System.Windows.Forms.RadioButton rbDelete;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.TextBox txtTitle;
private System.Windows.Forms.RadioButton rbCustom;
private System.Windows.Forms.RadioButton rbFileName;
private System.Windows.Forms.Label label3;
}
}