DiscoverServerDlg.designer.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /* ========================================================================
  2. * Copyright (c) 2005-2019 The OPC Foundation, Inc. All rights reserved.
  3. *
  4. * OPC Foundation MIT License 1.00
  5. *
  6. * Permission is hereby granted, free of charge, to any person
  7. * obtaining a copy of this software and associated documentation
  8. * files (the "Software"), to deal in the Software without
  9. * restriction, including without limitation the rights to use,
  10. * copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the Software, and to permit persons to whom the
  12. * Software is furnished to do so, subject to the following
  13. * conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be
  16. * included in all copies or substantial portions of the Software.
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  21. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  22. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  23. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24. * OTHER DEALINGS IN THE SOFTWARE.
  25. *
  26. * The complete license agreement can be found here:
  27. * http://opcfoundation.org/License/MIT/1.00/
  28. * ======================================================================*/
  29. namespace OpcUaHelper.Forms
  30. {
  31. partial class DiscoverServerDlg
  32. {
  33. /// <summary>
  34. /// Required designer variable.
  35. /// </summary>
  36. private System.ComponentModel.IContainer components = null;
  37. /// <summary>
  38. /// Clean up any resources being used.
  39. /// </summary>
  40. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  41. protected override void Dispose(bool disposing)
  42. {
  43. if (disposing && (components != null))
  44. {
  45. components.Dispose();
  46. }
  47. base.Dispose(disposing);
  48. }
  49. #region Windows Form Designer generated code
  50. /// <summary>
  51. /// Required method for Designer support - do not modify
  52. /// the contents of this method with the code editor.
  53. /// </summary>
  54. private void InitializeComponent()
  55. {
  56. this.CancelBTN = new System.Windows.Forms.Button();
  57. this.OkBTN = new System.Windows.Forms.Button();
  58. this.ValueLB = new System.Windows.Forms.Label();
  59. this.ValueTB = new System.Windows.Forms.TextBox();
  60. this.ServersLB = new System.Windows.Forms.ListBox();
  61. this.FindBTN = new System.Windows.Forms.Button();
  62. this.SuspendLayout();
  63. //
  64. // CancelBTN
  65. //
  66. this.CancelBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  67. this.CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  68. this.CancelBTN.Location = new System.Drawing.Point(313, 173);
  69. this.CancelBTN.Name = "CancelBTN";
  70. this.CancelBTN.Size = new System.Drawing.Size(75, 23);
  71. this.CancelBTN.TabIndex = 0;
  72. this.CancelBTN.Text = "Cancel";
  73. this.CancelBTN.UseVisualStyleBackColor = true;
  74. //
  75. // OkBTN
  76. //
  77. this.OkBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  78. this.OkBTN.Location = new System.Drawing.Point(4, 173);
  79. this.OkBTN.Name = "OkBTN";
  80. this.OkBTN.Size = new System.Drawing.Size(75, 23);
  81. this.OkBTN.TabIndex = 1;
  82. this.OkBTN.Text = "OK";
  83. this.OkBTN.UseVisualStyleBackColor = true;
  84. this.OkBTN.Click += new System.EventHandler(this.OkBTN_Click);
  85. //
  86. // ValueLB
  87. //
  88. this.ValueLB.AutoSize = true;
  89. this.ValueLB.Location = new System.Drawing.Point(1, 9);
  90. this.ValueLB.Name = "ValueLB";
  91. this.ValueLB.Size = new System.Drawing.Size(29, 13);
  92. this.ValueLB.TabIndex = 2;
  93. this.ValueLB.Text = "Host";
  94. //
  95. // ValueTB
  96. //
  97. this.ValueTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  98. | System.Windows.Forms.AnchorStyles.Right)));
  99. this.ValueTB.Location = new System.Drawing.Point(36, 6);
  100. this.ValueTB.Name = "ValueTB";
  101. this.ValueTB.Size = new System.Drawing.Size(306, 20);
  102. this.ValueTB.TabIndex = 3;
  103. this.ValueTB.TextChanged += new System.EventHandler(this.ValueTB_TextChanged);
  104. //
  105. // ServersLB
  106. //
  107. this.ServersLB.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  108. | System.Windows.Forms.AnchorStyles.Left)
  109. | System.Windows.Forms.AnchorStyles.Right)));
  110. this.ServersLB.FormattingEnabled = true;
  111. this.ServersLB.Location = new System.Drawing.Point(4, 32);
  112. this.ServersLB.Name = "ServersLB";
  113. this.ServersLB.Size = new System.Drawing.Size(384, 134);
  114. this.ServersLB.TabIndex = 5;
  115. this.ServersLB.SelectedIndexChanged += new System.EventHandler(this.ServersLB_SelectedIndexChanged);
  116. //
  117. // FindBTN
  118. //
  119. this.FindBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  120. this.FindBTN.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  121. this.FindBTN.Location = new System.Drawing.Point(345, 4);
  122. this.FindBTN.Margin = new System.Windows.Forms.Padding(0);
  123. this.FindBTN.Name = "FindBTN";
  124. this.FindBTN.Size = new System.Drawing.Size(43, 23);
  125. this.FindBTN.TabIndex = 4;
  126. this.FindBTN.Text = "Find";
  127. this.FindBTN.UseVisualStyleBackColor = true;
  128. this.FindBTN.Click += new System.EventHandler(this.FindBTN_Click);
  129. //
  130. // DiscoverServerDlg
  131. //
  132. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  133. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  134. this.ClientSize = new System.Drawing.Size(392, 198);
  135. this.Controls.Add(this.FindBTN);
  136. this.Controls.Add(this.ServersLB);
  137. this.Controls.Add(this.ValueTB);
  138. this.Controls.Add(this.ValueLB);
  139. this.Controls.Add(this.OkBTN);
  140. this.Controls.Add(this.CancelBTN);
  141. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  142. this.MaximizeBox = false;
  143. this.Name = "DiscoverServerDlg";
  144. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  145. this.Text = "Discover Servers";
  146. this.ResumeLayout(false);
  147. this.PerformLayout();
  148. }
  149. #endregion
  150. private System.Windows.Forms.Button CancelBTN;
  151. private System.Windows.Forms.Button OkBTN;
  152. private System.Windows.Forms.Label ValueLB;
  153. private System.Windows.Forms.TextBox ValueTB;
  154. private System.Windows.Forms.ListBox ServersLB;
  155. private System.Windows.Forms.Button FindBTN;
  156. }
  157. }