Form1.Designer.cs
上传用户:jsz11269
上传日期:2017-01-14
资源大小:450k
文件大小:5k
- namespace UseDNS
- {
- 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.lbHost = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.getDomain = new System.Windows.Forms.Button();
- this.btnGetIP = new System.Windows.Forms.Button();
- this.tbDomain = new System.Windows.Forms.MaskedTextBox();
- this.tbIP = new System.Windows.Forms.MaskedTextBox();
- this.SuspendLayout();
- //
- // lbHost
- //
- this.lbHost.AutoSize = true;
- this.lbHost.Location = new System.Drawing.Point(32, 25);
- this.lbHost.Name = "lbHost";
- this.lbHost.Size = new System.Drawing.Size(0, 12);
- this.lbHost.TabIndex = 0;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(32, 131);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(41, 12);
- this.label2.TabIndex = 1;
- this.label2.Text = "域名:";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(32, 168);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(29, 12);
- this.label3.TabIndex = 2;
- this.label3.Text = "IP:";
- //
- // getDomain
- //
- this.getDomain.Location = new System.Drawing.Point(241, 119);
- this.getDomain.Name = "getDomain";
- this.getDomain.Size = new System.Drawing.Size(75, 23);
- this.getDomain.TabIndex = 5;
- this.getDomain.Text = "得到域名";
- this.getDomain.UseVisualStyleBackColor = true;
- this.getDomain.Click += new System.EventHandler(this.getDomain_Click);
- //
- // btnGetIP
- //
- this.btnGetIP.Location = new System.Drawing.Point(241, 163);
- this.btnGetIP.Name = "btnGetIP";
- this.btnGetIP.Size = new System.Drawing.Size(75, 23);
- this.btnGetIP.TabIndex = 6;
- this.btnGetIP.Text = "得到IP";
- this.btnGetIP.UseVisualStyleBackColor = true;
- this.btnGetIP.Click += new System.EventHandler(this.btnGetIP_Click);
- //
- // tbDomain
- //
- this.tbDomain.Location = new System.Drawing.Point(98, 122);
- this.tbDomain.Name = "tbDomain";
- this.tbDomain.Size = new System.Drawing.Size(100, 21);
- this.tbDomain.TabIndex = 7;
- //
- // tbIP
- //
- this.tbIP.Location = new System.Drawing.Point(98, 168);
- this.tbIP.Name = "tbIP";
- this.tbIP.Size = new System.Drawing.Size(100, 21);
- this.tbIP.TabIndex = 8;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(367, 238);
- this.Controls.Add(this.tbIP);
- this.Controls.Add(this.tbDomain);
- this.Controls.Add(this.btnGetIP);
- this.Controls.Add(this.getDomain);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.lbHost);
- this.Name = "Form1";
- this.Text = "DNS示例";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label lbHost;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button getDomain;
- private System.Windows.Forms.Button btnGetIP;
- private System.Windows.Forms.MaskedTextBox tbDomain;
- private System.Windows.Forms.MaskedTextBox tbIP;
- }
- }