FrmPLC.Designer.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. namespace PCLCommunication
  2. {
  3. partial class FrmPLC
  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.lblIP = new System.Windows.Forms.Label();
  29. this.txtIP = new System.Windows.Forms.TextBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.txtPort = new System.Windows.Forms.TextBox();
  32. this.btnOK = new System.Windows.Forms.Button();
  33. this.btnClose = new System.Windows.Forms.Button();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.txtInterval = new System.Windows.Forms.TextBox();
  36. this.SuspendLayout();
  37. //
  38. // lblIP
  39. //
  40. this.lblIP.AutoSize = true;
  41. this.lblIP.Location = new System.Drawing.Point(35, 25);
  42. this.lblIP.Name = "lblIP";
  43. this.lblIP.Size = new System.Drawing.Size(17, 12);
  44. this.lblIP.TabIndex = 0;
  45. this.lblIP.Text = "IP";
  46. //
  47. // txtIP
  48. //
  49. this.txtIP.Location = new System.Drawing.Point(82, 22);
  50. this.txtIP.Name = "txtIP";
  51. this.txtIP.Size = new System.Drawing.Size(145, 21);
  52. this.txtIP.TabIndex = 1;
  53. //
  54. // label1
  55. //
  56. this.label1.AutoSize = true;
  57. this.label1.Location = new System.Drawing.Point(35, 52);
  58. this.label1.Name = "label1";
  59. this.label1.Size = new System.Drawing.Size(29, 12);
  60. this.label1.TabIndex = 2;
  61. this.label1.Text = "Port";
  62. //
  63. // txtPort
  64. //
  65. this.txtPort.Location = new System.Drawing.Point(82, 49);
  66. this.txtPort.Name = "txtPort";
  67. this.txtPort.Size = new System.Drawing.Size(145, 21);
  68. this.txtPort.TabIndex = 3;
  69. //
  70. // btnOK
  71. //
  72. this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  73. this.btnOK.Location = new System.Drawing.Point(96, 112);
  74. this.btnOK.Name = "btnOK";
  75. this.btnOK.Size = new System.Drawing.Size(75, 23);
  76. this.btnOK.TabIndex = 6;
  77. this.btnOK.Text = "确定";
  78. this.btnOK.UseVisualStyleBackColor = true;
  79. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  80. //
  81. // btnClose
  82. //
  83. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  84. this.btnClose.Location = new System.Drawing.Point(185, 112);
  85. this.btnClose.Name = "btnClose";
  86. this.btnClose.Size = new System.Drawing.Size(75, 23);
  87. this.btnClose.TabIndex = 7;
  88. this.btnClose.Text = "取消";
  89. this.btnClose.UseVisualStyleBackColor = true;
  90. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  91. //
  92. // label2
  93. //
  94. this.label2.AutoSize = true;
  95. this.label2.Location = new System.Drawing.Point(23, 79);
  96. this.label2.Name = "label2";
  97. this.label2.Size = new System.Drawing.Size(53, 12);
  98. this.label2.TabIndex = 4;
  99. this.label2.Text = "间隔(ms)";
  100. //
  101. // txtInterval
  102. //
  103. this.txtInterval.Location = new System.Drawing.Point(82, 76);
  104. this.txtInterval.Name = "txtInterval";
  105. this.txtInterval.Size = new System.Drawing.Size(145, 21);
  106. this.txtInterval.TabIndex = 5;
  107. //
  108. // FrmPLC
  109. //
  110. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  111. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  112. this.ClientSize = new System.Drawing.Size(272, 139);
  113. this.Controls.Add(this.btnClose);
  114. this.Controls.Add(this.btnOK);
  115. this.Controls.Add(this.txtInterval);
  116. this.Controls.Add(this.label2);
  117. this.Controls.Add(this.txtPort);
  118. this.Controls.Add(this.label1);
  119. this.Controls.Add(this.txtIP);
  120. this.Controls.Add(this.lblIP);
  121. this.Name = "FrmPLC";
  122. this.Text = "PLC设置";
  123. this.Load += new System.EventHandler(this.FrmPLC_Load);
  124. this.ResumeLayout(false);
  125. this.PerformLayout();
  126. }
  127. #endregion
  128. private System.Windows.Forms.Label lblIP;
  129. private System.Windows.Forms.TextBox txtIP;
  130. private System.Windows.Forms.Label label1;
  131. private System.Windows.Forms.TextBox txtPort;
  132. private System.Windows.Forms.Button btnOK;
  133. private System.Windows.Forms.Button btnClose;
  134. private System.Windows.Forms.Label label2;
  135. private System.Windows.Forms.TextBox txtInterval;
  136. }
  137. }