MainWindow.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. namespace UAS_PLCDataReader
  2. {
  3. partial class MainWindow
  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.IP = new System.Windows.Forms.TextBox();
  29. this.IP_label = new System.Windows.Forms.Label();
  30. this.Port_label = new System.Windows.Forms.Label();
  31. this.Port = new System.Windows.Forms.TextBox();
  32. this.OpenServer = new System.Windows.Forms.Button();
  33. this.CloseServer = new System.Windows.Forms.Button();
  34. this.Result = new UAS_PLCDataReader.RichTextAutoBottom();
  35. this.SuspendLayout();
  36. //
  37. // IP
  38. //
  39. this.IP.Enabled = false;
  40. this.IP.Location = new System.Drawing.Point(111, 328);
  41. this.IP.Name = "IP";
  42. this.IP.Size = new System.Drawing.Size(133, 21);
  43. this.IP.TabIndex = 0;
  44. //
  45. // IP_label
  46. //
  47. this.IP_label.AutoSize = true;
  48. this.IP_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  49. this.IP_label.Location = new System.Drawing.Point(12, 328);
  50. this.IP_label.Name = "IP_label";
  51. this.IP_label.Size = new System.Drawing.Size(85, 21);
  52. this.IP_label.TabIndex = 1;
  53. this.IP_label.Text = "IPAddress";
  54. //
  55. // Port_label
  56. //
  57. this.Port_label.AutoSize = true;
  58. this.Port_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  59. this.Port_label.Location = new System.Drawing.Point(255, 328);
  60. this.Port_label.Name = "Port_label";
  61. this.Port_label.Size = new System.Drawing.Size(42, 21);
  62. this.Port_label.TabIndex = 3;
  63. this.Port_label.Text = "Port";
  64. //
  65. // Port
  66. //
  67. this.Port.Location = new System.Drawing.Point(314, 328);
  68. this.Port.Name = "Port";
  69. this.Port.Size = new System.Drawing.Size(133, 21);
  70. this.Port.TabIndex = 2;
  71. //
  72. // OpenServer
  73. //
  74. this.OpenServer.Location = new System.Drawing.Point(496, 328);
  75. this.OpenServer.Name = "OpenServer";
  76. this.OpenServer.Size = new System.Drawing.Size(65, 23);
  77. this.OpenServer.TabIndex = 4;
  78. this.OpenServer.Text = "Open";
  79. this.OpenServer.UseVisualStyleBackColor = true;
  80. this.OpenServer.Click += new System.EventHandler(this.OpenServer_Click);
  81. //
  82. // CloseServer
  83. //
  84. this.CloseServer.Location = new System.Drawing.Point(597, 328);
  85. this.CloseServer.Name = "CloseServer";
  86. this.CloseServer.Size = new System.Drawing.Size(65, 23);
  87. this.CloseServer.TabIndex = 5;
  88. this.CloseServer.Text = "Close";
  89. this.CloseServer.UseVisualStyleBackColor = true;
  90. this.CloseServer.Click += new System.EventHandler(this.CloseServer_Click);
  91. //
  92. // Result
  93. //
  94. this.Result.Location = new System.Drawing.Point(12, 12);
  95. this.Result.Name = "Result";
  96. this.Result.Size = new System.Drawing.Size(678, 310);
  97. this.Result.TabIndex = 6;
  98. this.Result.Text = "";
  99. //
  100. // MainWindow
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.ClientSize = new System.Drawing.Size(702, 358);
  105. this.Controls.Add(this.Result);
  106. this.Controls.Add(this.CloseServer);
  107. this.Controls.Add(this.OpenServer);
  108. this.Controls.Add(this.Port_label);
  109. this.Controls.Add(this.Port);
  110. this.Controls.Add(this.IP_label);
  111. this.Controls.Add(this.IP);
  112. this.MaximizeBox = false;
  113. this.Name = "MainWindow";
  114. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  115. this.Text = "PLCDataReader";
  116. this.Load += new System.EventHandler(this.Form1_Load);
  117. this.ResumeLayout(false);
  118. this.PerformLayout();
  119. }
  120. #endregion
  121. private System.Windows.Forms.TextBox IP;
  122. private System.Windows.Forms.Label IP_label;
  123. private System.Windows.Forms.Label Port_label;
  124. private System.Windows.Forms.TextBox Port;
  125. private System.Windows.Forms.Button OpenServer;
  126. private System.Windows.Forms.Button CloseServer;
  127. private RichTextAutoBottom Result;
  128. }
  129. }