Form1.Designer.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:5k
源码类别:

Email服务器

开发平台:

C#

  1. namespace UseDNS
  2. {
  3.     partial class Form1
  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.lbHost = new System.Windows.Forms.Label();
  29.             this.label2 = new System.Windows.Forms.Label();
  30.             this.label3 = new System.Windows.Forms.Label();
  31.             this.getDomain = new System.Windows.Forms.Button();
  32.             this.btnGetIP = new System.Windows.Forms.Button();
  33.             this.tbDomain = new System.Windows.Forms.MaskedTextBox();
  34.             this.tbIP = new System.Windows.Forms.MaskedTextBox();
  35.             this.SuspendLayout();
  36.             // 
  37.             // lbHost
  38.             // 
  39.             this.lbHost.AutoSize = true;
  40.             this.lbHost.Location = new System.Drawing.Point(32, 25);
  41.             this.lbHost.Name = "lbHost";
  42.             this.lbHost.Size = new System.Drawing.Size(0, 12);
  43.             this.lbHost.TabIndex = 0;
  44.             // 
  45.             // label2
  46.             // 
  47.             this.label2.AutoSize = true;
  48.             this.label2.Location = new System.Drawing.Point(32, 131);
  49.             this.label2.Name = "label2";
  50.             this.label2.Size = new System.Drawing.Size(41, 12);
  51.             this.label2.TabIndex = 1;
  52.             this.label2.Text = "域名:";
  53.             // 
  54.             // label3
  55.             // 
  56.             this.label3.AutoSize = true;
  57.             this.label3.Location = new System.Drawing.Point(32, 168);
  58.             this.label3.Name = "label3";
  59.             this.label3.Size = new System.Drawing.Size(29, 12);
  60.             this.label3.TabIndex = 2;
  61.             this.label3.Text = "IP:";
  62.             // 
  63.             // getDomain
  64.             // 
  65.             this.getDomain.Location = new System.Drawing.Point(241, 119);
  66.             this.getDomain.Name = "getDomain";
  67.             this.getDomain.Size = new System.Drawing.Size(75, 23);
  68.             this.getDomain.TabIndex = 5;
  69.             this.getDomain.Text = "得到域名";
  70.             this.getDomain.UseVisualStyleBackColor = true;
  71.             this.getDomain.Click += new System.EventHandler(this.getDomain_Click);
  72.             // 
  73.             // btnGetIP
  74.             // 
  75.             this.btnGetIP.Location = new System.Drawing.Point(241, 163);
  76.             this.btnGetIP.Name = "btnGetIP";
  77.             this.btnGetIP.Size = new System.Drawing.Size(75, 23);
  78.             this.btnGetIP.TabIndex = 6;
  79.             this.btnGetIP.Text = "得到IP";
  80.             this.btnGetIP.UseVisualStyleBackColor = true;
  81.             this.btnGetIP.Click += new System.EventHandler(this.btnGetIP_Click);
  82.             // 
  83.             // tbDomain
  84.             // 
  85.             this.tbDomain.Location = new System.Drawing.Point(98, 122);
  86.             this.tbDomain.Name = "tbDomain";
  87.             this.tbDomain.Size = new System.Drawing.Size(100, 21);
  88.             this.tbDomain.TabIndex = 7;
  89.             // 
  90.             // tbIP
  91.             // 
  92.             this.tbIP.Location = new System.Drawing.Point(98, 168);
  93.             this.tbIP.Name = "tbIP";
  94.             this.tbIP.Size = new System.Drawing.Size(100, 21);
  95.             this.tbIP.TabIndex = 8;
  96.             // 
  97.             // Form1
  98.             // 
  99.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  100.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101.             this.ClientSize = new System.Drawing.Size(367, 238);
  102.             this.Controls.Add(this.tbIP);
  103.             this.Controls.Add(this.tbDomain);
  104.             this.Controls.Add(this.btnGetIP);
  105.             this.Controls.Add(this.getDomain);
  106.             this.Controls.Add(this.label3);
  107.             this.Controls.Add(this.label2);
  108.             this.Controls.Add(this.lbHost);
  109.             this.Name = "Form1";
  110.             this.Text = "DNS示例";
  111.             this.Load += new System.EventHandler(this.Form1_Load);
  112.             this.ResumeLayout(false);
  113.             this.PerformLayout();
  114.         }
  115.         #endregion
  116.         private System.Windows.Forms.Label lbHost;
  117.         private System.Windows.Forms.Label label2;
  118.         private System.Windows.Forms.Label label3;
  119.         private System.Windows.Forms.Button getDomain;
  120.         private System.Windows.Forms.Button btnGetIP;
  121.         private System.Windows.Forms.MaskedTextBox tbDomain;
  122.         private System.Windows.Forms.MaskedTextBox tbIP;
  123.     }
  124. }