Main.Designer.cs
上传用户:hncsjykj
上传日期:2022-08-09
资源大小:461k
文件大小:3k
源码类别:

Email客户端

开发平台:

C#

  1. namespace LYBemail
  2. {
  3.     partial class Main
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.btn_write = new System.Windows.Forms.Button();
  29.             this.btn_receive = new System.Windows.Forms.Button();
  30.             this.SuspendLayout();
  31.             // 
  32.             // btn_write
  33.             // 
  34.             this.btn_write.Location = new System.Drawing.Point(12, 11);
  35.             this.btn_write.Name = "btn_write";
  36.             this.btn_write.Size = new System.Drawing.Size(75, 56);
  37.             this.btn_write.TabIndex = 0;
  38.             this.btn_write.Text = "写信";
  39.             this.btn_write.UseVisualStyleBackColor = true;
  40.             this.btn_write.Click += new System.EventHandler(this.btn_write_Click);
  41.             // 
  42.             // btn_receive
  43.             // 
  44.             this.btn_receive.Location = new System.Drawing.Point(95, 12);
  45.             this.btn_receive.Name = "btn_receive";
  46.             this.btn_receive.Size = new System.Drawing.Size(75, 55);
  47.             this.btn_receive.TabIndex = 1;
  48.             this.btn_receive.Text = "收信";
  49.             this.btn_receive.UseVisualStyleBackColor = true;
  50.             this.btn_receive.Click += new System.EventHandler(this.btn_receive_Click);
  51.             // 
  52.             // Main
  53.             // 
  54.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  55.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56.             this.ClientSize = new System.Drawing.Size(182, 79);
  57.             this.Controls.Add(this.btn_receive);
  58.             this.Controls.Add(this.btn_write);
  59.             this.Name = "Main";
  60.             this.Text = "LYBemail";
  61.             this.ResumeLayout(false);
  62.         }
  63.         #endregion
  64.         private System.Windows.Forms.Button btn_write;
  65.         private System.Windows.Forms.Button btn_receive;
  66.     }
  67. }