Form1.Designer.cs
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:7k
源码类别:
Email客户端
开发平台:
Visual C++
- namespace OutLookDemo
- {
- partial class Form1
- {
- /// <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.label1 = new System.Windows.Forms.Label();
- this.txt目标地址 = new System.Windows.Forms.TextBox();
- this.txt标题 = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.txt内容 = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.txt附件 = new System.Windows.Forms.TextBox();
- this.btn附件 = new System.Windows.Forms.Button();
- this.btn发送Email = new System.Windows.Forms.Button();
- this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(47, 27);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(65, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "目标地址:";
- //
- // txt目标地址
- //
- this.txt目标地址.Location = new System.Drawing.Point(130, 24);
- this.txt目标地址.Name = "txt目标地址";
- this.txt目标地址.Size = new System.Drawing.Size(113, 21);
- this.txt目标地址.TabIndex = 1;
- //
- // txt标题
- //
- this.txt标题.Location = new System.Drawing.Point(130, 68);
- this.txt标题.Name = "txt标题";
- this.txt标题.Size = new System.Drawing.Size(113, 21);
- this.txt标题.TabIndex = 2;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(47, 71);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(41, 12);
- this.label2.TabIndex = 3;
- this.label2.Text = "标题:";
- //
- // txt内容
- //
- this.txt内容.Location = new System.Drawing.Point(130, 114);
- this.txt内容.Multiline = true;
- this.txt内容.Name = "txt内容";
- this.txt内容.Size = new System.Drawing.Size(380, 236);
- this.txt内容.TabIndex = 4;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(47, 114);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(41, 12);
- this.label3.TabIndex = 5;
- this.label3.Text = "内容:";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(47, 383);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(41, 12);
- this.label4.TabIndex = 6;
- this.label4.Text = "附件:";
- //
- // txt附件
- //
- this.txt附件.Location = new System.Drawing.Point(130, 374);
- this.txt附件.Name = "txt附件";
- this.txt附件.Size = new System.Drawing.Size(289, 21);
- this.txt附件.TabIndex = 7;
- //
- // btn附件
- //
- this.btn附件.Location = new System.Drawing.Point(450, 374);
- this.btn附件.Name = "btn附件";
- this.btn附件.Size = new System.Drawing.Size(60, 29);
- this.btn附件.TabIndex = 8;
- this.btn附件.Text = "浏览...";
- this.btn附件.UseVisualStyleBackColor = true;
- this.btn附件.Click += new System.EventHandler(this.btn附件_Click);
- //
- // btn发送Email
- //
- this.btn发送Email.Location = new System.Drawing.Point(130, 425);
- this.btn发送Email.Name = "btn发送Email";
- this.btn发送Email.Size = new System.Drawing.Size(380, 40);
- this.btn发送Email.TabIndex = 9;
- this.btn发送Email.Text = "发送Email";
- this.btn发送Email.UseVisualStyleBackColor = true;
- this.btn发送Email.Click += new System.EventHandler(this.btn发送Email_Click);
- //
- // openFileDialog1
- //
- this.openFileDialog1.FileName = "openFileDialog1";
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(629, 481);
- this.Controls.Add(this.btn发送Email);
- this.Controls.Add(this.btn附件);
- this.Controls.Add(this.txt附件);
- this.Controls.Add(this.label4);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.txt内容);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.txt标题);
- this.Controls.Add(this.txt目标地址);
- this.Controls.Add(this.label1);
- this.Name = "Form1";
- this.Text = "调用OutLook发送Email";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox txt目标地址;
- private System.Windows.Forms.TextBox txt标题;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox txt内容;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.TextBox txt附件;
- private System.Windows.Forms.Button btn附件;
- private System.Windows.Forms.Button btn发送Email;
- private System.Windows.Forms.OpenFileDialog openFileDialog1;
- }
- }