Form1.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. namespace smsdemo
  2. {
  3. partial class Form1
  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. components = new System.ComponentModel.Container();
  29. groupBox1 = new GroupBox();
  30. textBox2 = new TextBox();
  31. textBox1 = new TextBox();
  32. groupBox2 = new GroupBox();
  33. button2 = new Button();
  34. button1 = new Button();
  35. textBox3 = new TextBox();
  36. groupBox3 = new GroupBox();
  37. groupBox4 = new GroupBox();
  38. checkBox2 = new CheckBox();
  39. checkBox1 = new CheckBox();
  40. pictureBox4 = new PictureBox();
  41. pictureBox3 = new PictureBox();
  42. pictureBox2 = new PictureBox();
  43. pictureBox1 = new PictureBox();
  44. button6 = new Button();
  45. label2 = new Label();
  46. label1 = new Label();
  47. textBox5 = new TextBox();
  48. textBox4 = new TextBox();
  49. button5 = new Button();
  50. button4 = new Button();
  51. button3 = new Button();
  52. timer1 = new System.Windows.Forms.Timer(components);
  53. groupBox1.SuspendLayout();
  54. groupBox2.SuspendLayout();
  55. groupBox3.SuspendLayout();
  56. groupBox4.SuspendLayout();
  57. ((System.ComponentModel.ISupportInitialize)pictureBox4).BeginInit();
  58. ((System.ComponentModel.ISupportInitialize)pictureBox3).BeginInit();
  59. ((System.ComponentModel.ISupportInitialize)pictureBox2).BeginInit();
  60. ((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
  61. SuspendLayout();
  62. //
  63. // groupBox1
  64. //
  65. groupBox1.Controls.Add(textBox2);
  66. groupBox1.Controls.Add(textBox1);
  67. groupBox1.Location = new Point(21, 21);
  68. groupBox1.Name = "groupBox1";
  69. groupBox1.Size = new Size(300, 186);
  70. groupBox1.TabIndex = 0;
  71. groupBox1.TabStop = false;
  72. groupBox1.Text = "输入";
  73. //
  74. // textBox2
  75. //
  76. textBox2.Location = new Point(6, 107);
  77. textBox2.Name = "textBox2";
  78. textBox2.Size = new Size(144, 30);
  79. textBox2.TabIndex = 1;
  80. textBox2.Text = "1234";
  81. //
  82. // textBox1
  83. //
  84. textBox1.Location = new Point(6, 45);
  85. textBox1.Name = "textBox1";
  86. textBox1.Size = new Size(288, 30);
  87. textBox1.TabIndex = 0;
  88. textBox1.Text = "13040679332";
  89. //
  90. // groupBox2
  91. //
  92. groupBox2.Controls.Add(button2);
  93. groupBox2.Controls.Add(button1);
  94. groupBox2.Location = new Point(21, 213);
  95. groupBox2.Name = "groupBox2";
  96. groupBox2.Size = new Size(300, 114);
  97. groupBox2.TabIndex = 1;
  98. groupBox2.TabStop = false;
  99. groupBox2.Text = "操作";
  100. //
  101. // button2
  102. //
  103. button2.Location = new Point(158, 29);
  104. button2.Name = "button2";
  105. button2.Size = new Size(136, 79);
  106. button2.TabIndex = 1;
  107. button2.Text = "发送";
  108. button2.UseVisualStyleBackColor = true;
  109. button2.Click += button2_Click;
  110. //
  111. // button1
  112. //
  113. button1.Location = new Point(6, 29);
  114. button1.Name = "button1";
  115. button1.Size = new Size(146, 79);
  116. button1.TabIndex = 0;
  117. button1.Text = "清空";
  118. button1.UseVisualStyleBackColor = true;
  119. button1.Click += button1_Click;
  120. //
  121. // textBox3
  122. //
  123. textBox3.Location = new Point(6, 32);
  124. textBox3.Multiline = true;
  125. textBox3.Name = "textBox3";
  126. textBox3.Size = new Size(442, 255);
  127. textBox3.TabIndex = 2;
  128. //
  129. // groupBox3
  130. //
  131. groupBox3.Controls.Add(textBox3);
  132. groupBox3.Location = new Point(338, 34);
  133. groupBox3.Name = "groupBox3";
  134. groupBox3.Size = new Size(465, 293);
  135. groupBox3.TabIndex = 3;
  136. groupBox3.TabStop = false;
  137. groupBox3.Text = "运行信息";
  138. //
  139. // groupBox4
  140. //
  141. groupBox4.Controls.Add(checkBox2);
  142. groupBox4.Controls.Add(checkBox1);
  143. groupBox4.Controls.Add(pictureBox4);
  144. groupBox4.Controls.Add(pictureBox3);
  145. groupBox4.Controls.Add(pictureBox2);
  146. groupBox4.Controls.Add(pictureBox1);
  147. groupBox4.Controls.Add(button6);
  148. groupBox4.Controls.Add(label2);
  149. groupBox4.Controls.Add(label1);
  150. groupBox4.Controls.Add(textBox5);
  151. groupBox4.Controls.Add(textBox4);
  152. groupBox4.Controls.Add(button5);
  153. groupBox4.Controls.Add(button4);
  154. groupBox4.Controls.Add(button3);
  155. groupBox4.Location = new Point(21, 333);
  156. groupBox4.Name = "groupBox4";
  157. groupBox4.Size = new Size(782, 274);
  158. groupBox4.TabIndex = 4;
  159. groupBox4.TabStop = false;
  160. groupBox4.Text = "控制";
  161. //
  162. // checkBox2
  163. //
  164. checkBox2.AutoSize = true;
  165. checkBox2.Checked = true;
  166. checkBox2.CheckState = CheckState.Checked;
  167. checkBox2.Location = new Point(304, 164);
  168. checkBox2.Name = "checkBox2";
  169. checkBox2.Size = new Size(126, 28);
  170. checkBox2.TabIndex = 13;
  171. checkBox2.Text = "服务化运行";
  172. checkBox2.UseVisualStyleBackColor = true;
  173. //
  174. // checkBox1
  175. //
  176. checkBox1.AutoSize = true;
  177. checkBox1.Checked = true;
  178. checkBox1.CheckState = CheckState.Checked;
  179. checkBox1.Location = new Point(303, 210);
  180. checkBox1.Name = "checkBox1";
  181. checkBox1.Size = new Size(142, 28);
  182. checkBox1.TabIndex = 12;
  183. checkBox1.Text = "使用adb点击";
  184. checkBox1.UseVisualStyleBackColor = true;
  185. //
  186. // pictureBox4
  187. //
  188. pictureBox4.Location = new Point(664, 164);
  189. pictureBox4.Name = "pictureBox4";
  190. pictureBox4.Size = new Size(101, 87);
  191. pictureBox4.TabIndex = 11;
  192. pictureBox4.TabStop = false;
  193. //
  194. // pictureBox3
  195. //
  196. pictureBox3.Location = new Point(511, 164);
  197. pictureBox3.Name = "pictureBox3";
  198. pictureBox3.Size = new Size(101, 87);
  199. pictureBox3.TabIndex = 10;
  200. pictureBox3.TabStop = false;
  201. //
  202. // pictureBox2
  203. //
  204. pictureBox2.Location = new Point(664, 48);
  205. pictureBox2.Name = "pictureBox2";
  206. pictureBox2.Size = new Size(101, 87);
  207. pictureBox2.TabIndex = 9;
  208. pictureBox2.TabStop = false;
  209. //
  210. // pictureBox1
  211. //
  212. pictureBox1.Location = new Point(511, 48);
  213. pictureBox1.Name = "pictureBox1";
  214. pictureBox1.Size = new Size(101, 87);
  215. pictureBox1.TabIndex = 8;
  216. pictureBox1.TabStop = false;
  217. //
  218. // button6
  219. //
  220. button6.Location = new Point(158, 151);
  221. button6.Name = "button6";
  222. button6.Size = new Size(127, 87);
  223. button6.TabIndex = 7;
  224. button6.Text = "统计";
  225. button6.UseVisualStyleBackColor = true;
  226. button6.Click += button6_Click;
  227. //
  228. // label2
  229. //
  230. label2.AutoSize = true;
  231. label2.Location = new Point(303, 105);
  232. label2.Name = "label2";
  233. label2.Size = new Size(20, 24);
  234. label2.TabIndex = 6;
  235. label2.Text = "y";
  236. //
  237. // label1
  238. //
  239. label1.AutoSize = true;
  240. label1.Location = new Point(304, 51);
  241. label1.Name = "label1";
  242. label1.Size = new Size(19, 24);
  243. label1.TabIndex = 5;
  244. label1.Text = "x";
  245. //
  246. // textBox5
  247. //
  248. textBox5.Location = new Point(329, 105);
  249. textBox5.Name = "textBox5";
  250. textBox5.Size = new Size(116, 30);
  251. textBox5.TabIndex = 4;
  252. //
  253. // textBox4
  254. //
  255. textBox4.Location = new Point(329, 51);
  256. textBox4.Name = "textBox4";
  257. textBox4.Size = new Size(116, 30);
  258. textBox4.TabIndex = 3;
  259. textBox4.TextChanged += textBox4_TextChanged;
  260. //
  261. // button5
  262. //
  263. button5.Location = new Point(158, 48);
  264. button5.Name = "button5";
  265. button5.Size = new Size(127, 87);
  266. button5.TabIndex = 2;
  267. button5.Text = "坐标校准";
  268. button5.UseVisualStyleBackColor = true;
  269. button5.Click += button5_Click;
  270. //
  271. // button4
  272. //
  273. button4.Location = new Point(25, 151);
  274. button4.Name = "button4";
  275. button4.Size = new Size(127, 87);
  276. button4.TabIndex = 1;
  277. button4.Text = "自检";
  278. button4.UseVisualStyleBackColor = true;
  279. button4.Click += button4_Click;
  280. //
  281. // button3
  282. //
  283. button3.Location = new Point(23, 48);
  284. button3.Name = "button3";
  285. button3.Size = new Size(127, 87);
  286. button3.TabIndex = 0;
  287. button3.Text = "初始化";
  288. button3.UseVisualStyleBackColor = true;
  289. button3.Click += button3_Click;
  290. //
  291. // timer1
  292. //
  293. timer1.Interval = 30000;
  294. timer1.Tick += timer1_Tick;
  295. //
  296. // Form1
  297. //
  298. AutoScaleDimensions = new SizeF(11F, 24F);
  299. AutoScaleMode = AutoScaleMode.Font;
  300. ClientSize = new Size(816, 620);
  301. Controls.Add(groupBox4);
  302. Controls.Add(groupBox3);
  303. Controls.Add(groupBox2);
  304. Controls.Add(groupBox1);
  305. Name = "Form1";
  306. Text = "Form1";
  307. groupBox1.ResumeLayout(false);
  308. groupBox1.PerformLayout();
  309. groupBox2.ResumeLayout(false);
  310. groupBox3.ResumeLayout(false);
  311. groupBox3.PerformLayout();
  312. groupBox4.ResumeLayout(false);
  313. groupBox4.PerformLayout();
  314. ((System.ComponentModel.ISupportInitialize)pictureBox4).EndInit();
  315. ((System.ComponentModel.ISupportInitialize)pictureBox3).EndInit();
  316. ((System.ComponentModel.ISupportInitialize)pictureBox2).EndInit();
  317. ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
  318. ResumeLayout(false);
  319. }
  320. #endregion
  321. private GroupBox groupBox1;
  322. private TextBox textBox2;
  323. private TextBox textBox1;
  324. private GroupBox groupBox2;
  325. private Button button2;
  326. private Button button1;
  327. private TextBox textBox3;
  328. private GroupBox groupBox3;
  329. private GroupBox groupBox4;
  330. private Button button4;
  331. private Button button3;
  332. private System.Windows.Forms.Timer timer1;
  333. private Button button5;
  334. private TextBox textBox5;
  335. private TextBox textBox4;
  336. private Label label2;
  337. private Label label1;
  338. private Button button6;
  339. private PictureBox pictureBox1;
  340. private CheckBox checkBox1;
  341. private PictureBox pictureBox4;
  342. private PictureBox pictureBox3;
  343. private PictureBox pictureBox2;
  344. private CheckBox checkBox2;
  345. }
  346. }