frmManageDnsProviders.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. namespace DnsServerSystemTrayApp
  2. {
  3. partial class frmManageDnsProviders
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmManageDnsProviders));
  29. this.listView1 = new System.Windows.Forms.ListView();
  30. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  31. this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  32. this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  33. this.groupBox1 = new System.Windows.Forms.GroupBox();
  34. this.btnDelete = new System.Windows.Forms.Button();
  35. this.btnClear = new System.Windows.Forms.Button();
  36. this.btnAddUpdate = new System.Windows.Forms.Button();
  37. this.txtIpv6Addresses = new System.Windows.Forms.TextBox();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.txtIpv4Addresses = new System.Windows.Forms.TextBox();
  40. this.label2 = new System.Windows.Forms.Label();
  41. this.txtDnsProviderName = new System.Windows.Forms.TextBox();
  42. this.label1 = new System.Windows.Forms.Label();
  43. this.btnOK = new System.Windows.Forms.Button();
  44. this.btnCancel = new System.Windows.Forms.Button();
  45. this.btnRestoreDefaults = new System.Windows.Forms.Button();
  46. this.groupBox1.SuspendLayout();
  47. this.SuspendLayout();
  48. //
  49. // listView1
  50. //
  51. this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  52. | System.Windows.Forms.AnchorStyles.Right)));
  53. this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  54. this.columnHeader1,
  55. this.columnHeader2,
  56. this.columnHeader3});
  57. this.listView1.FullRowSelect = true;
  58. this.listView1.HideSelection = false;
  59. this.listView1.Location = new System.Drawing.Point(12, 12);
  60. this.listView1.MultiSelect = false;
  61. this.listView1.Name = "listView1";
  62. this.listView1.Size = new System.Drawing.Size(660, 200);
  63. this.listView1.Sorting = System.Windows.Forms.SortOrder.Ascending;
  64. this.listView1.TabIndex = 0;
  65. this.listView1.UseCompatibleStateImageBehavior = false;
  66. this.listView1.View = System.Windows.Forms.View.Details;
  67. this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
  68. //
  69. // columnHeader1
  70. //
  71. this.columnHeader1.Text = "DNS Provider";
  72. this.columnHeader1.Width = 150;
  73. //
  74. // columnHeader2
  75. //
  76. this.columnHeader2.Text = "IPv4 Addresses";
  77. this.columnHeader2.Width = 240;
  78. //
  79. // columnHeader3
  80. //
  81. this.columnHeader3.Text = "IPv6 Addresses";
  82. this.columnHeader3.Width = 240;
  83. //
  84. // groupBox1
  85. //
  86. this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  87. | System.Windows.Forms.AnchorStyles.Right)));
  88. this.groupBox1.Controls.Add(this.btnDelete);
  89. this.groupBox1.Controls.Add(this.btnClear);
  90. this.groupBox1.Controls.Add(this.btnAddUpdate);
  91. this.groupBox1.Controls.Add(this.txtIpv6Addresses);
  92. this.groupBox1.Controls.Add(this.label3);
  93. this.groupBox1.Controls.Add(this.txtIpv4Addresses);
  94. this.groupBox1.Controls.Add(this.label2);
  95. this.groupBox1.Controls.Add(this.txtDnsProviderName);
  96. this.groupBox1.Controls.Add(this.label1);
  97. this.groupBox1.Location = new System.Drawing.Point(12, 216);
  98. this.groupBox1.Name = "groupBox1";
  99. this.groupBox1.Size = new System.Drawing.Size(661, 130);
  100. this.groupBox1.TabIndex = 9;
  101. this.groupBox1.TabStop = false;
  102. //
  103. // btnDelete
  104. //
  105. this.btnDelete.Enabled = false;
  106. this.btnDelete.Location = new System.Drawing.Point(179, 97);
  107. this.btnDelete.Name = "btnDelete";
  108. this.btnDelete.Size = new System.Drawing.Size(75, 23);
  109. this.btnDelete.TabIndex = 16;
  110. this.btnDelete.Text = "&Delete";
  111. this.btnDelete.UseVisualStyleBackColor = true;
  112. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  113. //
  114. // btnClear
  115. //
  116. this.btnClear.Location = new System.Drawing.Point(260, 97);
  117. this.btnClear.Name = "btnClear";
  118. this.btnClear.Size = new System.Drawing.Size(75, 23);
  119. this.btnClear.TabIndex = 17;
  120. this.btnClear.Text = "&Clear";
  121. this.btnClear.UseVisualStyleBackColor = true;
  122. this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
  123. //
  124. // btnAddUpdate
  125. //
  126. this.btnAddUpdate.Location = new System.Drawing.Point(98, 97);
  127. this.btnAddUpdate.Name = "btnAddUpdate";
  128. this.btnAddUpdate.Size = new System.Drawing.Size(75, 23);
  129. this.btnAddUpdate.TabIndex = 15;
  130. this.btnAddUpdate.Text = "&Add";
  131. this.btnAddUpdate.UseVisualStyleBackColor = true;
  132. this.btnAddUpdate.Click += new System.EventHandler(this.btnAddUpdate_Click);
  133. //
  134. // txtIpv6Addresses
  135. //
  136. this.txtIpv6Addresses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  137. | System.Windows.Forms.AnchorStyles.Right)));
  138. this.txtIpv6Addresses.Location = new System.Drawing.Point(98, 71);
  139. this.txtIpv6Addresses.MaxLength = 255;
  140. this.txtIpv6Addresses.Name = "txtIpv6Addresses";
  141. this.txtIpv6Addresses.Size = new System.Drawing.Size(552, 20);
  142. this.txtIpv6Addresses.TabIndex = 14;
  143. //
  144. // label3
  145. //
  146. this.label3.AutoSize = true;
  147. this.label3.Location = new System.Drawing.Point(11, 74);
  148. this.label3.Name = "label3";
  149. this.label3.Size = new System.Drawing.Size(81, 13);
  150. this.label3.TabIndex = 13;
  151. this.label3.Text = "IPv6 Addresses";
  152. //
  153. // txtIpv4Addresses
  154. //
  155. this.txtIpv4Addresses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  156. | System.Windows.Forms.AnchorStyles.Right)));
  157. this.txtIpv4Addresses.Location = new System.Drawing.Point(98, 45);
  158. this.txtIpv4Addresses.MaxLength = 255;
  159. this.txtIpv4Addresses.Name = "txtIpv4Addresses";
  160. this.txtIpv4Addresses.Size = new System.Drawing.Size(552, 20);
  161. this.txtIpv4Addresses.TabIndex = 12;
  162. //
  163. // label2
  164. //
  165. this.label2.AutoSize = true;
  166. this.label2.Location = new System.Drawing.Point(11, 48);
  167. this.label2.Name = "label2";
  168. this.label2.Size = new System.Drawing.Size(81, 13);
  169. this.label2.TabIndex = 11;
  170. this.label2.Text = "IPv4 Addresses";
  171. //
  172. // txtDnsProviderName
  173. //
  174. this.txtDnsProviderName.Location = new System.Drawing.Point(98, 19);
  175. this.txtDnsProviderName.MaxLength = 255;
  176. this.txtDnsProviderName.Name = "txtDnsProviderName";
  177. this.txtDnsProviderName.Size = new System.Drawing.Size(200, 20);
  178. this.txtDnsProviderName.TabIndex = 10;
  179. //
  180. // label1
  181. //
  182. this.label1.AutoSize = true;
  183. this.label1.Location = new System.Drawing.Point(20, 22);
  184. this.label1.Name = "label1";
  185. this.label1.Size = new System.Drawing.Size(72, 13);
  186. this.label1.TabIndex = 9;
  187. this.label1.Text = "DNS Provider";
  188. //
  189. // btnOK
  190. //
  191. this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  192. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  193. this.btnOK.Location = new System.Drawing.Point(517, 356);
  194. this.btnOK.Name = "btnOK";
  195. this.btnOK.Size = new System.Drawing.Size(75, 23);
  196. this.btnOK.TabIndex = 10;
  197. this.btnOK.Text = "OK";
  198. this.btnOK.UseVisualStyleBackColor = true;
  199. //
  200. // btnCancel
  201. //
  202. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  203. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  204. this.btnCancel.Location = new System.Drawing.Point(598, 356);
  205. this.btnCancel.Name = "btnCancel";
  206. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  207. this.btnCancel.TabIndex = 11;
  208. this.btnCancel.Text = "Cancel";
  209. this.btnCancel.UseVisualStyleBackColor = true;
  210. //
  211. // btnRestoreDefaults
  212. //
  213. this.btnRestoreDefaults.Location = new System.Drawing.Point(12, 356);
  214. this.btnRestoreDefaults.Name = "btnRestoreDefaults";
  215. this.btnRestoreDefaults.Size = new System.Drawing.Size(100, 23);
  216. this.btnRestoreDefaults.TabIndex = 12;
  217. this.btnRestoreDefaults.Text = "Restore &Defaults";
  218. this.btnRestoreDefaults.UseVisualStyleBackColor = true;
  219. this.btnRestoreDefaults.Click += new System.EventHandler(this.btnRestoreDefaults_Click);
  220. //
  221. // frmManageDnsProviders
  222. //
  223. this.AcceptButton = this.btnOK;
  224. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  225. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  226. this.CancelButton = this.btnCancel;
  227. this.ClientSize = new System.Drawing.Size(684, 386);
  228. this.Controls.Add(this.btnRestoreDefaults);
  229. this.Controls.Add(this.btnCancel);
  230. this.Controls.Add(this.btnOK);
  231. this.Controls.Add(this.groupBox1);
  232. this.Controls.Add(this.listView1);
  233. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  234. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  235. this.MaximizeBox = false;
  236. this.MinimizeBox = false;
  237. this.Name = "frmManageDnsProviders";
  238. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  239. this.Text = "Manage Network DNS Providers - Technitium DNS Server";
  240. this.Load += new System.EventHandler(this.frmManageDnsProviders_Load);
  241. this.groupBox1.ResumeLayout(false);
  242. this.groupBox1.PerformLayout();
  243. this.ResumeLayout(false);
  244. }
  245. #endregion
  246. private System.Windows.Forms.ListView listView1;
  247. private System.Windows.Forms.ColumnHeader columnHeader1;
  248. private System.Windows.Forms.ColumnHeader columnHeader2;
  249. private System.Windows.Forms.ColumnHeader columnHeader3;
  250. private System.Windows.Forms.GroupBox groupBox1;
  251. private System.Windows.Forms.Button btnClear;
  252. private System.Windows.Forms.Button btnAddUpdate;
  253. private System.Windows.Forms.TextBox txtIpv6Addresses;
  254. private System.Windows.Forms.Label label3;
  255. private System.Windows.Forms.TextBox txtIpv4Addresses;
  256. private System.Windows.Forms.Label label2;
  257. private System.Windows.Forms.TextBox txtDnsProviderName;
  258. private System.Windows.Forms.Label label1;
  259. private System.Windows.Forms.Button btnOK;
  260. private System.Windows.Forms.Button btnCancel;
  261. private System.Windows.Forms.Button btnRestoreDefaults;
  262. private System.Windows.Forms.Button btnDelete;
  263. }
  264. }