Form1.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. namespace WindowsFormsDns
  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.label1 = new System.Windows.Forms.Label();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.textBox2 = new System.Windows.Forms.TextBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.textBox3 = new System.Windows.Forms.TextBox();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.textBox4 = new System.Windows.Forms.TextBox();
  37. this.SuspendLayout();
  38. //
  39. // label1
  40. //
  41. this.label1.AutoSize = true;
  42. this.label1.Location = new System.Drawing.Point(35, 37);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(127, 15);
  45. this.label1.TabIndex = 0;
  46. this.label1.Text = "请输入主机地址:";
  47. //
  48. // textBox1
  49. //
  50. this.textBox1.Location = new System.Drawing.Point(168, 32);
  51. this.textBox1.Name = "textBox1";
  52. this.textBox1.Size = new System.Drawing.Size(365, 25);
  53. this.textBox1.TabIndex = 1;
  54. //
  55. // button1
  56. //
  57. this.button1.Location = new System.Drawing.Point(557, 29);
  58. this.button1.Name = "button1";
  59. this.button1.Size = new System.Drawing.Size(75, 30);
  60. this.button1.TabIndex = 2;
  61. this.button1.Text = "确定";
  62. this.button1.UseVisualStyleBackColor = true;
  63. this.button1.Click += new System.EventHandler(this.button1_Click);
  64. //
  65. // label2
  66. //
  67. this.label2.AutoSize = true;
  68. this.label2.Location = new System.Drawing.Point(35, 83);
  69. this.label2.Name = "label2";
  70. this.label2.Size = new System.Drawing.Size(98, 15);
  71. this.label2.TabIndex = 3;
  72. this.label2.Text = "主机IP地址:";
  73. //
  74. // textBox2
  75. //
  76. this.textBox2.Location = new System.Drawing.Point(145, 78);
  77. this.textBox2.Name = "textBox2";
  78. this.textBox2.ReadOnly = true;
  79. this.textBox2.Size = new System.Drawing.Size(202, 25);
  80. this.textBox2.TabIndex = 4;
  81. //
  82. // label3
  83. //
  84. this.label3.AutoSize = true;
  85. this.label3.Location = new System.Drawing.Point(381, 83);
  86. this.label3.Name = "label3";
  87. this.label3.Size = new System.Drawing.Size(97, 15);
  88. this.label3.TabIndex = 5;
  89. this.label3.Text = "本地主机名:";
  90. //
  91. // textBox3
  92. //
  93. this.textBox3.Location = new System.Drawing.Point(485, 78);
  94. this.textBox3.Name = "textBox3";
  95. this.textBox3.ReadOnly = true;
  96. this.textBox3.Size = new System.Drawing.Size(147, 25);
  97. this.textBox3.TabIndex = 6;
  98. //
  99. // label4
  100. //
  101. this.label4.AutoSize = true;
  102. this.label4.Location = new System.Drawing.Point(35, 129);
  103. this.label4.Name = "label4";
  104. this.label4.Size = new System.Drawing.Size(91, 15);
  105. this.label4.TabIndex = 7;
  106. this.label4.Text = "DNS主机名:";
  107. //
  108. // textBox4
  109. //
  110. this.textBox4.Location = new System.Drawing.Point(145, 124);
  111. this.textBox4.Name = "textBox4";
  112. this.textBox4.ReadOnly = true;
  113. this.textBox4.Size = new System.Drawing.Size(202, 25);
  114. this.textBox4.TabIndex = 8;
  115. //
  116. // Form1
  117. //
  118. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  119. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  120. this.ClientSize = new System.Drawing.Size(653, 173);
  121. this.Controls.Add(this.textBox4);
  122. this.Controls.Add(this.label4);
  123. this.Controls.Add(this.textBox3);
  124. this.Controls.Add(this.label3);
  125. this.Controls.Add(this.textBox2);
  126. this.Controls.Add(this.label2);
  127. this.Controls.Add(this.button1);
  128. this.Controls.Add(this.textBox1);
  129. this.Controls.Add(this.label1);
  130. this.Name = "Form1";
  131. this.Text = "Form1";
  132. this.ResumeLayout(false);
  133. this.PerformLayout();
  134. }
  135. #endregion
  136. private System.Windows.Forms.Label label1;
  137. private System.Windows.Forms.TextBox textBox1;
  138. private System.Windows.Forms.Button button1;
  139. private System.Windows.Forms.Label label2;
  140. private System.Windows.Forms.TextBox textBox2;
  141. private System.Windows.Forms.Label label3;
  142. private System.Windows.Forms.TextBox textBox3;
  143. private System.Windows.Forms.Label label4;
  144. private System.Windows.Forms.TextBox textBox4;
  145. }
  146. }