Form_IpConfig.Designer.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. namespace NetworkDiscovery
  2. {
  3. partial class Form_IpConfig
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.textBox1 = new System.Windows.Forms.TextBox();
  29. this.textBox2 = new System.Windows.Forms.TextBox();
  30. this.textBox3 = new System.Windows.Forms.TextBox();
  31. this.Применить = new System.Windows.Forms.Button();
  32. this.Button_Reset = new System.Windows.Forms.Button();
  33. this.checkBox1 = new System.Windows.Forms.CheckBox();
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.label3 = new System.Windows.Forms.Label();
  37. this.SuspendLayout();
  38. //
  39. // textBox1
  40. //
  41. this.textBox1.Location = new System.Drawing.Point(54, 77);
  42. this.textBox1.Name = "textBox1";
  43. this.textBox1.Size = new System.Drawing.Size(156, 20);
  44. this.textBox1.TabIndex = 0;
  45. this.textBox1.TextChanged += new System.EventHandler(this.textBox_TextChanged_Verify);
  46. //
  47. // textBox2
  48. //
  49. this.textBox2.Location = new System.Drawing.Point(54, 128);
  50. this.textBox2.Name = "textBox2";
  51. this.textBox2.Size = new System.Drawing.Size(156, 20);
  52. this.textBox2.TabIndex = 1;
  53. this.textBox2.TextChanged += new System.EventHandler(this.textBox_TextChanged_Verify);
  54. //
  55. // textBox3
  56. //
  57. this.textBox3.Location = new System.Drawing.Point(54, 182);
  58. this.textBox3.Name = "textBox3";
  59. this.textBox3.Size = new System.Drawing.Size(156, 20);
  60. this.textBox3.TabIndex = 2;
  61. this.textBox3.TextChanged += new System.EventHandler(this.textBox_TextChanged_Verify);
  62. //
  63. // Применить
  64. //
  65. this.Применить.BackColor = System.Drawing.SystemColors.ControlLight;
  66. this.Применить.Location = new System.Drawing.Point(54, 256);
  67. this.Применить.Name = "Применить";
  68. this.Применить.Size = new System.Drawing.Size(96, 41);
  69. this.Применить.TabIndex = 3;
  70. this.Применить.Text = "Применить";
  71. this.Применить.UseVisualStyleBackColor = false;
  72. this.Применить.Click += new System.EventHandler(this.apply_button_click);
  73. //
  74. // Button_Reset
  75. //
  76. this.Button_Reset.Location = new System.Drawing.Point(204, 256);
  77. this.Button_Reset.Name = "Button_Reset";
  78. this.Button_Reset.Size = new System.Drawing.Size(91, 41);
  79. this.Button_Reset.TabIndex = 4;
  80. this.Button_Reset.Text = "Сброс";
  81. this.Button_Reset.UseVisualStyleBackColor = true;
  82. this.Button_Reset.Click += new System.EventHandler(this.Button_Reset_Click);
  83. //
  84. // checkBox1
  85. //
  86. this.checkBox1.AutoSize = true;
  87. this.checkBox1.Location = new System.Drawing.Point(54, 21);
  88. this.checkBox1.Name = "checkBox1";
  89. this.checkBox1.Size = new System.Drawing.Size(193, 17);
  90. this.checkBox1.TabIndex = 6;
  91. this.checkBox1.Text = "Получить IP-адрес атоматически";
  92. this.checkBox1.UseVisualStyleBackColor = true;
  93. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  94. //
  95. // label1
  96. //
  97. this.label1.AutoSize = true;
  98. this.label1.Location = new System.Drawing.Point(51, 61);
  99. this.label1.Name = "label1";
  100. this.label1.Size = new System.Drawing.Size(110, 13);
  101. this.label1.TabIndex = 7;
  102. this.label1.Text = "IP-адрес устройства";
  103. //
  104. // label2
  105. //
  106. this.label2.AutoSize = true;
  107. this.label2.Location = new System.Drawing.Point(51, 112);
  108. this.label2.Name = "label2";
  109. this.label2.Size = new System.Drawing.Size(87, 13);
  110. this.label2.TabIndex = 8;
  111. this.label2.Text = "IP-адрес шлюза";
  112. //
  113. // label3
  114. //
  115. this.label3.AutoSize = true;
  116. this.label3.Location = new System.Drawing.Point(51, 166);
  117. this.label3.Name = "label3";
  118. this.label3.Size = new System.Drawing.Size(84, 13);
  119. this.label3.TabIndex = 9;
  120. this.label3.Text = "Маска подсети";
  121. //
  122. // Form_IpConfig
  123. //
  124. this.Icon = NetworkDiscovery.Properties.Resources.icon;
  125. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  126. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  127. this.ClientSize = new System.Drawing.Size(330, 308);
  128. this.Controls.Add(this.label3);
  129. this.Controls.Add(this.label2);
  130. this.Controls.Add(this.label1);
  131. this.Controls.Add(this.checkBox1);
  132. this.Controls.Add(this.Button_Reset);
  133. this.Controls.Add(this.Применить);
  134. this.Controls.Add(this.textBox3);
  135. this.Controls.Add(this.textBox2);
  136. this.Controls.Add(this.textBox1);
  137. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  138. this.MaximizeBox = false;
  139. this.Name = "Form_IpConfig";
  140. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  141. this.Text = "Сетевые параметры";
  142. this.ResumeLayout(false);
  143. this.PerformLayout();
  144. }
  145. private System.Windows.Forms.TextBox textBox1;
  146. private System.Windows.Forms.TextBox textBox2;
  147. private System.Windows.Forms.TextBox textBox3;
  148. private System.Windows.Forms.Button Применить;
  149. private System.Windows.Forms.Button Button_Reset;
  150. private System.Windows.Forms.CheckBox checkBox1;
  151. private System.Windows.Forms.Label label1;
  152. private System.Windows.Forms.Label label2;
  153. private System.Windows.Forms.Label label3;
  154. }
  155. #endregion
  156. }