288 lines
13 KiB
C#
288 lines
13 KiB
C#
|
namespace AutoPekage
|
|||
|
{
|
|||
|
partial class frmPackage
|
|||
|
{
|
|||
|
/// <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.rbDesktop = new System.Windows.Forms.RadioButton();
|
|||
|
this.rbCustom = new System.Windows.Forms.RadioButton();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.txtPackagePath = new System.Windows.Forms.TextBox();
|
|||
|
this.btnSelectPath = new System.Windows.Forms.Button();
|
|||
|
this.sfdPackagePath = new System.Windows.Forms.SaveFileDialog();
|
|||
|
this.btnOK = new System.Windows.Forms.Button();
|
|||
|
this.btnExit = new System.Windows.Forms.Button();
|
|||
|
this.gbMail = new System.Windows.Forms.GroupBox();
|
|||
|
this.txtContext = new System.Windows.Forms.TextBox();
|
|||
|
this.label5 = new System.Windows.Forms.Label();
|
|||
|
this.txtCaption = new System.Windows.Forms.TextBox();
|
|||
|
this.label4 = new System.Windows.Forms.Label();
|
|||
|
this.label3 = new System.Windows.Forms.Label();
|
|||
|
this.cbMailTo = new System.Windows.Forms.ComboBox();
|
|||
|
this.btnAddSender = new System.Windows.Forms.Button();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.cbSender = new System.Windows.Forms.ComboBox();
|
|||
|
this.cbSendMail = new System.Windows.Forms.CheckBox();
|
|||
|
this.gbMail.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// rbDesktop
|
|||
|
//
|
|||
|
this.rbDesktop.AutoSize = true;
|
|||
|
this.rbDesktop.Checked = true;
|
|||
|
this.rbDesktop.Location = new System.Drawing.Point(9, 13);
|
|||
|
this.rbDesktop.Name = "rbDesktop";
|
|||
|
this.rbDesktop.Size = new System.Drawing.Size(83, 16);
|
|||
|
this.rbDesktop.TabIndex = 0;
|
|||
|
this.rbDesktop.TabStop = true;
|
|||
|
this.rbDesktop.Text = "打包到桌面";
|
|||
|
this.rbDesktop.UseVisualStyleBackColor = true;
|
|||
|
this.rbDesktop.CheckedChanged += new System.EventHandler(this.rbDesktop_CheckedChanged);
|
|||
|
//
|
|||
|
// rbCustom
|
|||
|
//
|
|||
|
this.rbCustom.AutoSize = true;
|
|||
|
this.rbCustom.Location = new System.Drawing.Point(139, 13);
|
|||
|
this.rbCustom.Name = "rbCustom";
|
|||
|
this.rbCustom.Size = new System.Drawing.Size(107, 16);
|
|||
|
this.rbCustom.TabIndex = 1;
|
|||
|
this.rbCustom.Text = "打包到指定路径";
|
|||
|
this.rbCustom.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(9, 40);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(41, 12);
|
|||
|
this.label1.TabIndex = 2;
|
|||
|
this.label1.Text = "路径:";
|
|||
|
//
|
|||
|
// txtPackagePath
|
|||
|
//
|
|||
|
this.txtPackagePath.Enabled = false;
|
|||
|
this.txtPackagePath.Location = new System.Drawing.Point(56, 37);
|
|||
|
this.txtPackagePath.Name = "txtPackagePath";
|
|||
|
this.txtPackagePath.ReadOnly = true;
|
|||
|
this.txtPackagePath.Size = new System.Drawing.Size(311, 21);
|
|||
|
this.txtPackagePath.TabIndex = 3;
|
|||
|
this.txtPackagePath.TextChanged += new System.EventHandler(this.txtPackagePath_TextChanged);
|
|||
|
this.txtPackagePath.DoubleClick += new System.EventHandler(this.txtPackagePath_DoubleClick);
|
|||
|
//
|
|||
|
// btnSelectPath
|
|||
|
//
|
|||
|
this.btnSelectPath.Enabled = false;
|
|||
|
this.btnSelectPath.Location = new System.Drawing.Point(374, 37);
|
|||
|
this.btnSelectPath.Name = "btnSelectPath";
|
|||
|
this.btnSelectPath.Size = new System.Drawing.Size(40, 23);
|
|||
|
this.btnSelectPath.TabIndex = 4;
|
|||
|
this.btnSelectPath.Text = "...";
|
|||
|
this.btnSelectPath.UseVisualStyleBackColor = true;
|
|||
|
this.btnSelectPath.Click += new System.EventHandler(this.btnSelectPath_Click);
|
|||
|
//
|
|||
|
// sfdPackagePath
|
|||
|
//
|
|||
|
this.sfdPackagePath.DefaultExt = "zip";
|
|||
|
this.sfdPackagePath.FileName = "我的打包文件.zip";
|
|||
|
this.sfdPackagePath.Filter = "zip文件|*.zip|所有文件|*.*";
|
|||
|
//
|
|||
|
// btnOK
|
|||
|
//
|
|||
|
this.btnOK.Location = new System.Drawing.Point(56, 295);
|
|||
|
this.btnOK.Name = "btnOK";
|
|||
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.btnOK.TabIndex = 5;
|
|||
|
this.btnOK.Text = "确定";
|
|||
|
this.btnOK.UseVisualStyleBackColor = true;
|
|||
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|||
|
//
|
|||
|
// btnExit
|
|||
|
//
|
|||
|
this.btnExit.Location = new System.Drawing.Point(292, 295);
|
|||
|
this.btnExit.Name = "btnExit";
|
|||
|
this.btnExit.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.btnExit.TabIndex = 6;
|
|||
|
this.btnExit.Text = "返回";
|
|||
|
this.btnExit.UseVisualStyleBackColor = true;
|
|||
|
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
|
|||
|
//
|
|||
|
// gbMail
|
|||
|
//
|
|||
|
this.gbMail.Controls.Add(this.txtContext);
|
|||
|
this.gbMail.Controls.Add(this.label5);
|
|||
|
this.gbMail.Controls.Add(this.txtCaption);
|
|||
|
this.gbMail.Controls.Add(this.label4);
|
|||
|
this.gbMail.Controls.Add(this.label3);
|
|||
|
this.gbMail.Controls.Add(this.cbMailTo);
|
|||
|
this.gbMail.Controls.Add(this.btnAddSender);
|
|||
|
this.gbMail.Controls.Add(this.label2);
|
|||
|
this.gbMail.Controls.Add(this.cbSender);
|
|||
|
this.gbMail.Enabled = false;
|
|||
|
this.gbMail.Location = new System.Drawing.Point(9, 72);
|
|||
|
this.gbMail.Name = "gbMail";
|
|||
|
this.gbMail.Size = new System.Drawing.Size(405, 217);
|
|||
|
this.gbMail.TabIndex = 7;
|
|||
|
this.gbMail.TabStop = false;
|
|||
|
this.gbMail.Text = "发送邮件";
|
|||
|
//
|
|||
|
// txtContext
|
|||
|
//
|
|||
|
this.txtContext.Location = new System.Drawing.Point(53, 100);
|
|||
|
this.txtContext.Multiline = true;
|
|||
|
this.txtContext.Name = "txtContext";
|
|||
|
this.txtContext.Size = new System.Drawing.Size(348, 106);
|
|||
|
this.txtContext.TabIndex = 14;
|
|||
|
//
|
|||
|
// label5
|
|||
|
//
|
|||
|
this.label5.AutoSize = true;
|
|||
|
this.label5.Location = new System.Drawing.Point(6, 103);
|
|||
|
this.label5.Name = "label5";
|
|||
|
this.label5.Size = new System.Drawing.Size(41, 12);
|
|||
|
this.label5.TabIndex = 13;
|
|||
|
this.label5.Text = "内容:";
|
|||
|
//
|
|||
|
// txtCaption
|
|||
|
//
|
|||
|
this.txtCaption.Location = new System.Drawing.Point(53, 73);
|
|||
|
this.txtCaption.Name = "txtCaption";
|
|||
|
this.txtCaption.Size = new System.Drawing.Size(348, 21);
|
|||
|
this.txtCaption.TabIndex = 12;
|
|||
|
//
|
|||
|
// label4
|
|||
|
//
|
|||
|
this.label4.AutoSize = true;
|
|||
|
this.label4.Location = new System.Drawing.Point(6, 76);
|
|||
|
this.label4.Name = "label4";
|
|||
|
this.label4.Size = new System.Drawing.Size(41, 12);
|
|||
|
this.label4.TabIndex = 11;
|
|||
|
this.label4.Text = "标题:";
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
this.label3.AutoSize = true;
|
|||
|
this.label3.Location = new System.Drawing.Point(6, 48);
|
|||
|
this.label3.Name = "label3";
|
|||
|
this.label3.Size = new System.Drawing.Size(77, 12);
|
|||
|
this.label3.TabIndex = 10;
|
|||
|
this.label3.Text = "收件人信息:";
|
|||
|
//
|
|||
|
// cbMailTo
|
|||
|
//
|
|||
|
this.cbMailTo.FormattingEnabled = true;
|
|||
|
this.cbMailTo.Location = new System.Drawing.Point(89, 45);
|
|||
|
this.cbMailTo.Name = "cbMailTo";
|
|||
|
this.cbMailTo.Size = new System.Drawing.Size(310, 20);
|
|||
|
this.cbMailTo.TabIndex = 9;
|
|||
|
//
|
|||
|
// btnAddSender
|
|||
|
//
|
|||
|
this.btnAddSender.Location = new System.Drawing.Point(326, 15);
|
|||
|
this.btnAddSender.Name = "btnAddSender";
|
|||
|
this.btnAddSender.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.btnAddSender.TabIndex = 8;
|
|||
|
this.btnAddSender.Text = "添加发件人";
|
|||
|
this.btnAddSender.UseVisualStyleBackColor = true;
|
|||
|
this.btnAddSender.Click += new System.EventHandler(this.btnAddSender_Click);
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(6, 20);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(77, 12);
|
|||
|
this.label2.TabIndex = 2;
|
|||
|
this.label2.Text = "发件人信息:";
|
|||
|
//
|
|||
|
// cbSender
|
|||
|
//
|
|||
|
this.cbSender.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|||
|
this.cbSender.FormattingEnabled = true;
|
|||
|
this.cbSender.Location = new System.Drawing.Point(89, 17);
|
|||
|
this.cbSender.Name = "cbSender";
|
|||
|
this.cbSender.Size = new System.Drawing.Size(231, 20);
|
|||
|
this.cbSender.TabIndex = 1;
|
|||
|
//
|
|||
|
// cbSendMail
|
|||
|
//
|
|||
|
this.cbSendMail.AutoSize = true;
|
|||
|
this.cbSendMail.Location = new System.Drawing.Point(318, 12);
|
|||
|
this.cbSendMail.Name = "cbSendMail";
|
|||
|
this.cbSendMail.Size = new System.Drawing.Size(96, 16);
|
|||
|
this.cbSendMail.TabIndex = 0;
|
|||
|
this.cbSendMail.Text = "同时发送邮件";
|
|||
|
this.cbSendMail.UseVisualStyleBackColor = true;
|
|||
|
this.cbSendMail.CheckedChanged += new System.EventHandler(this.cbSendMail_CheckedChanged);
|
|||
|
//
|
|||
|
// frmPackage
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(427, 330);
|
|||
|
this.Controls.Add(this.gbMail);
|
|||
|
this.Controls.Add(this.btnExit);
|
|||
|
this.Controls.Add(this.cbSendMail);
|
|||
|
this.Controls.Add(this.btnOK);
|
|||
|
this.Controls.Add(this.btnSelectPath);
|
|||
|
this.Controls.Add(this.txtPackagePath);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Controls.Add(this.rbCustom);
|
|||
|
this.Controls.Add(this.rbDesktop);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|||
|
this.Name = "frmPackage";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|||
|
this.Text = "打包选项";
|
|||
|
this.gbMail.ResumeLayout(false);
|
|||
|
this.gbMail.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.RadioButton rbDesktop;
|
|||
|
private System.Windows.Forms.RadioButton rbCustom;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.TextBox txtPackagePath;
|
|||
|
private System.Windows.Forms.Button btnSelectPath;
|
|||
|
private System.Windows.Forms.SaveFileDialog sfdPackagePath;
|
|||
|
private System.Windows.Forms.Button btnOK;
|
|||
|
private System.Windows.Forms.Button btnExit;
|
|||
|
private System.Windows.Forms.GroupBox gbMail;
|
|||
|
private System.Windows.Forms.TextBox txtContext;
|
|||
|
private System.Windows.Forms.Label label5;
|
|||
|
private System.Windows.Forms.TextBox txtCaption;
|
|||
|
private System.Windows.Forms.Label label4;
|
|||
|
private System.Windows.Forms.Label label3;
|
|||
|
private System.Windows.Forms.ComboBox cbMailTo;
|
|||
|
private System.Windows.Forms.Button btnAddSender;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.ComboBox cbSender;
|
|||
|
private System.Windows.Forms.CheckBox cbSendMail;
|
|||
|
}
|
|||
|
}
|