Form1.Designer.cs 13 KB

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