MainTest.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. namespace IntelligentControlForsx.Test
  2. {
  3. partial class MainTest
  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.components = new System.ComponentModel.Container();
  29. this.plStructure = new System.Windows.Forms.Panel();
  30. this.plLoad = new System.Windows.Forms.Panel();
  31. this.timer1 = new System.Windows.Forms.Timer(this.components);
  32. this.plOther = new System.Windows.Forms.Panel();
  33. this.btnShow1 = new System.Windows.Forms.Button();
  34. this.btnShow2 = new System.Windows.Forms.Button();
  35. this.btnShow3 = new System.Windows.Forms.Button();
  36. this.btnGetAllControl = new System.Windows.Forms.Button();
  37. this.SuspendLayout();
  38. //
  39. // plStructure
  40. //
  41. this.plStructure.Location = new System.Drawing.Point(122, 84);
  42. this.plStructure.Name = "plStructure";
  43. this.plStructure.Size = new System.Drawing.Size(377, 131);
  44. this.plStructure.TabIndex = 0;
  45. //
  46. // plLoad
  47. //
  48. this.plLoad.Location = new System.Drawing.Point(122, 259);
  49. this.plLoad.Name = "plLoad";
  50. this.plLoad.Size = new System.Drawing.Size(377, 131);
  51. this.plLoad.TabIndex = 1;
  52. //
  53. // timer1
  54. //
  55. this.timer1.Enabled = true;
  56. this.timer1.Interval = 10000;
  57. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  58. //
  59. // plOther
  60. //
  61. this.plOther.Location = new System.Drawing.Point(122, 427);
  62. this.plOther.Name = "plOther";
  63. this.plOther.Size = new System.Drawing.Size(377, 131);
  64. this.plOther.TabIndex = 2;
  65. //
  66. // btnShow1
  67. //
  68. this.btnShow1.Location = new System.Drawing.Point(611, 120);
  69. this.btnShow1.Name = "btnShow1";
  70. this.btnShow1.Size = new System.Drawing.Size(75, 23);
  71. this.btnShow1.TabIndex = 3;
  72. this.btnShow1.Text = "显示1";
  73. this.btnShow1.UseVisualStyleBackColor = true;
  74. this.btnShow1.Click += new System.EventHandler(this.btnShow1_Click);
  75. //
  76. // btnShow2
  77. //
  78. this.btnShow2.Location = new System.Drawing.Point(611, 316);
  79. this.btnShow2.Name = "btnShow2";
  80. this.btnShow2.Size = new System.Drawing.Size(75, 23);
  81. this.btnShow2.TabIndex = 4;
  82. this.btnShow2.Text = "显示2";
  83. this.btnShow2.UseVisualStyleBackColor = true;
  84. this.btnShow2.Click += new System.EventHandler(this.btnShow2_Click);
  85. //
  86. // btnShow3
  87. //
  88. this.btnShow3.Location = new System.Drawing.Point(611, 473);
  89. this.btnShow3.Name = "btnShow3";
  90. this.btnShow3.Size = new System.Drawing.Size(75, 23);
  91. this.btnShow3.TabIndex = 5;
  92. this.btnShow3.Text = "显示3";
  93. this.btnShow3.UseVisualStyleBackColor = true;
  94. this.btnShow3.Click += new System.EventHandler(this.btnShow3_Click);
  95. //
  96. // btnGetAllControl
  97. //
  98. this.btnGetAllControl.Location = new System.Drawing.Point(816, 316);
  99. this.btnGetAllControl.Name = "btnGetAllControl";
  100. this.btnGetAllControl.Size = new System.Drawing.Size(130, 23);
  101. this.btnGetAllControl.TabIndex = 6;
  102. this.btnGetAllControl.Text = "获取所有控件";
  103. this.btnGetAllControl.UseVisualStyleBackColor = true;
  104. this.btnGetAllControl.Click += new System.EventHandler(this.btnGetAllControl_Click);
  105. //
  106. // MainTest
  107. //
  108. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  109. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  110. this.ClientSize = new System.Drawing.Size(1184, 861);
  111. this.Controls.Add(this.btnGetAllControl);
  112. this.Controls.Add(this.btnShow3);
  113. this.Controls.Add(this.btnShow2);
  114. this.Controls.Add(this.btnShow1);
  115. this.Controls.Add(this.plOther);
  116. this.Controls.Add(this.plLoad);
  117. this.Controls.Add(this.plStructure);
  118. this.Name = "MainTest";
  119. this.Text = "MainTest";
  120. this.Load += new System.EventHandler(this.MainTest_Load);
  121. this.Shown += new System.EventHandler(this.MainTest_Shown);
  122. this.ResumeLayout(false);
  123. }
  124. #endregion
  125. private MyControls.Bottom bottomTest1;
  126. private System.Windows.Forms.Panel plStructure;
  127. private System.Windows.Forms.Panel plLoad;
  128. private System.Windows.Forms.Timer timer1;
  129. private System.Windows.Forms.Panel plOther;
  130. private System.Windows.Forms.Button btnShow1;
  131. private System.Windows.Forms.Button btnShow2;
  132. private System.Windows.Forms.Button btnShow3;
  133. private System.Windows.Forms.Button btnGetAllControl;
  134. }
  135. }