Form1.Designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. namespace DUCP_Demo
  2. {
  3. partial class Form1
  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.DISTEXT = new System.Windows.Forms.Button();
  29. this.TextBox = new System.Windows.Forms.TextBox();
  30. this.PLAYVOICE = new System.Windows.Forms.Button();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.TextBox_WID = new System.Windows.Forms.TextBox();
  34. this.BUTTON_DEMO1 = new System.Windows.Forms.Button();
  35. this.BUTTON_DEMO2 = new System.Windows.Forms.Button();
  36. this.button1 = new System.Windows.Forms.Button();
  37. this.button2 = new System.Windows.Forms.Button();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.slider1 = new DevComponents.DotNetBar.Controls.Slider();
  40. this.button3 = new System.Windows.Forms.Button();
  41. this.button4 = new System.Windows.Forms.Button();
  42. this.button5 = new System.Windows.Forms.Button();
  43. this.textBox_ip = new System.Windows.Forms.TextBox();
  44. this.label4 = new System.Windows.Forms.Label();
  45. this.label5 = new System.Windows.Forms.Label();
  46. this.textBox_port = new System.Windows.Forms.TextBox();
  47. this.button6 = new System.Windows.Forms.Button();
  48. this.button7 = new System.Windows.Forms.Button();
  49. this.button8 = new System.Windows.Forms.Button();
  50. this.SuspendLayout();
  51. //
  52. // DISTEXT
  53. //
  54. this.DISTEXT.Location = new System.Drawing.Point(12, 128);
  55. this.DISTEXT.Name = "DISTEXT";
  56. this.DISTEXT.Size = new System.Drawing.Size(61, 31);
  57. this.DISTEXT.TabIndex = 0;
  58. this.DISTEXT.Text = "显示文字";
  59. this.DISTEXT.UseVisualStyleBackColor = true;
  60. this.DISTEXT.Click += new System.EventHandler(this.DISTEXT_Click);
  61. //
  62. // TextBox
  63. //
  64. this.TextBox.Location = new System.Drawing.Point(43, 78);
  65. this.TextBox.Name = "TextBox";
  66. this.TextBox.Size = new System.Drawing.Size(152, 21);
  67. this.TextBox.TabIndex = 1;
  68. //
  69. // PLAYVOICE
  70. //
  71. this.PLAYVOICE.Location = new System.Drawing.Point(12, 175);
  72. this.PLAYVOICE.Name = "PLAYVOICE";
  73. this.PLAYVOICE.Size = new System.Drawing.Size(61, 30);
  74. this.PLAYVOICE.TabIndex = 2;
  75. this.PLAYVOICE.Text = "播放声音";
  76. this.PLAYVOICE.UseVisualStyleBackColor = true;
  77. this.PLAYVOICE.Click += new System.EventHandler(this.播放语音_Click);
  78. //
  79. // label1
  80. //
  81. this.label1.AutoSize = true;
  82. this.label1.Location = new System.Drawing.Point(12, 81);
  83. this.label1.Name = "label1";
  84. this.label1.Size = new System.Drawing.Size(29, 12);
  85. this.label1.TabIndex = 3;
  86. this.label1.Text = "文本";
  87. //
  88. // label2
  89. //
  90. this.label2.AutoSize = true;
  91. this.label2.Location = new System.Drawing.Point(12, 50);
  92. this.label2.Name = "label2";
  93. this.label2.Size = new System.Drawing.Size(29, 12);
  94. this.label2.TabIndex = 4;
  95. this.label2.Text = "窗口";
  96. //
  97. // TextBox_WID
  98. //
  99. this.TextBox_WID.Location = new System.Drawing.Point(43, 47);
  100. this.TextBox_WID.Name = "TextBox_WID";
  101. this.TextBox_WID.Size = new System.Drawing.Size(42, 21);
  102. this.TextBox_WID.TabIndex = 5;
  103. //
  104. // BUTTON_DEMO1
  105. //
  106. this.BUTTON_DEMO1.Location = new System.Drawing.Point(11, 221);
  107. this.BUTTON_DEMO1.Name = "BUTTON_DEMO1";
  108. this.BUTTON_DEMO1.Size = new System.Drawing.Size(62, 28);
  109. this.BUTTON_DEMO1.TabIndex = 6;
  110. this.BUTTON_DEMO1.Text = "模板1";
  111. this.BUTTON_DEMO1.UseVisualStyleBackColor = true;
  112. this.BUTTON_DEMO1.Click += new System.EventHandler(this.BUTTON_DEMO1_Click);
  113. //
  114. // BUTTON_DEMO2
  115. //
  116. this.BUTTON_DEMO2.Location = new System.Drawing.Point(83, 221);
  117. this.BUTTON_DEMO2.Name = "BUTTON_DEMO2";
  118. this.BUTTON_DEMO2.Size = new System.Drawing.Size(62, 28);
  119. this.BUTTON_DEMO2.TabIndex = 7;
  120. this.BUTTON_DEMO2.Text = "模板2";
  121. this.BUTTON_DEMO2.UseVisualStyleBackColor = true;
  122. this.BUTTON_DEMO2.Click += new System.EventHandler(this.BUTTON_DEMO2_Click);
  123. //
  124. // button1
  125. //
  126. this.button1.Location = new System.Drawing.Point(283, 145);
  127. this.button1.Name = "button1";
  128. this.button1.Size = new System.Drawing.Size(75, 23);
  129. this.button1.TabIndex = 8;
  130. this.button1.Text = "音量+";
  131. this.button1.UseVisualStyleBackColor = true;
  132. this.button1.Click += new System.EventHandler(this.button1_Click);
  133. //
  134. // button2
  135. //
  136. this.button2.Location = new System.Drawing.Point(283, 194);
  137. this.button2.Name = "button2";
  138. this.button2.Size = new System.Drawing.Size(75, 23);
  139. this.button2.TabIndex = 9;
  140. this.button2.Text = "音量-";
  141. this.button2.UseVisualStyleBackColor = true;
  142. this.button2.Click += new System.EventHandler(this.button2_Click);
  143. //
  144. // label3
  145. //
  146. this.label3.AutoSize = true;
  147. this.label3.Location = new System.Drawing.Point(259, 78);
  148. this.label3.Name = "label3";
  149. this.label3.Size = new System.Drawing.Size(35, 12);
  150. this.label3.TabIndex = 10;
  151. this.label3.Text = "音量:";
  152. //
  153. // slider1
  154. //
  155. //
  156. //
  157. //
  158. this.slider1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
  159. this.slider1.Location = new System.Drawing.Point(222, 105);
  160. this.slider1.Name = "slider1";
  161. this.slider1.Size = new System.Drawing.Size(150, 23);
  162. this.slider1.Step = 4;
  163. this.slider1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
  164. this.slider1.TabIndex = 11;
  165. this.slider1.Text = "音量";
  166. this.slider1.Value = 10;
  167. this.slider1.ValueChanged += new System.EventHandler(this.slider1_ValueChanged);
  168. //
  169. // button3
  170. //
  171. this.button3.Location = new System.Drawing.Point(283, 240);
  172. this.button3.Name = "button3";
  173. this.button3.Size = new System.Drawing.Size(75, 23);
  174. this.button3.TabIndex = 12;
  175. this.button3.Text = "重启";
  176. this.button3.UseVisualStyleBackColor = true;
  177. this.button3.Click += new System.EventHandler(this.button3_Click);
  178. //
  179. // button4
  180. //
  181. this.button4.Location = new System.Drawing.Point(83, 175);
  182. this.button4.Name = "button4";
  183. this.button4.Size = new System.Drawing.Size(92, 30);
  184. this.button4.TabIndex = 13;
  185. this.button4.Text = "超限提示";
  186. this.button4.UseVisualStyleBackColor = true;
  187. this.button4.Click += new System.EventHandler(this.button4_Click);
  188. //
  189. // button5
  190. //
  191. this.button5.Location = new System.Drawing.Point(83, 129);
  192. this.button5.Name = "button5";
  193. this.button5.Size = new System.Drawing.Size(92, 30);
  194. this.button5.TabIndex = 14;
  195. this.button5.Text = "显示已存文字";
  196. this.button5.UseVisualStyleBackColor = true;
  197. this.button5.Click += new System.EventHandler(this.button5_Click);
  198. //
  199. // textBox_ip
  200. //
  201. this.textBox_ip.Location = new System.Drawing.Point(462, 47);
  202. this.textBox_ip.Name = "textBox_ip";
  203. this.textBox_ip.Size = new System.Drawing.Size(152, 21);
  204. this.textBox_ip.TabIndex = 18;
  205. this.textBox_ip.Text = "192.168.0.188";
  206. //
  207. // label4
  208. //
  209. this.label4.AutoSize = true;
  210. this.label4.Location = new System.Drawing.Point(415, 50);
  211. this.label4.Name = "label4";
  212. this.label4.Size = new System.Drawing.Size(41, 12);
  213. this.label4.TabIndex = 17;
  214. this.label4.Text = "ip地址";
  215. //
  216. // label5
  217. //
  218. this.label5.AutoSize = true;
  219. this.label5.Location = new System.Drawing.Point(427, 78);
  220. this.label5.Name = "label5";
  221. this.label5.Size = new System.Drawing.Size(29, 12);
  222. this.label5.TabIndex = 16;
  223. this.label5.Text = "端口";
  224. //
  225. // textBox_port
  226. //
  227. this.textBox_port.Location = new System.Drawing.Point(462, 78);
  228. this.textBox_port.Name = "textBox_port";
  229. this.textBox_port.Size = new System.Drawing.Size(53, 21);
  230. this.textBox_port.TabIndex = 15;
  231. this.textBox_port.Text = "10000";
  232. //
  233. // button6
  234. //
  235. this.button6.Location = new System.Drawing.Point(462, 129);
  236. this.button6.Name = "button6";
  237. this.button6.Size = new System.Drawing.Size(101, 30);
  238. this.button6.TabIndex = 19;
  239. this.button6.Text = "更改IP与端口";
  240. this.button6.UseVisualStyleBackColor = true;
  241. this.button6.Click += new System.EventHandler(this.button6_Click);
  242. //
  243. // button7
  244. //
  245. this.button7.Location = new System.Drawing.Point(283, 21);
  246. this.button7.Name = "button7";
  247. this.button7.Size = new System.Drawing.Size(75, 23);
  248. this.button7.TabIndex = 20;
  249. this.button7.Text = "刷新";
  250. this.button7.UseVisualStyleBackColor = true;
  251. this.button7.Click += new System.EventHandler(this.button7_Click);
  252. //
  253. // button8
  254. //
  255. this.button8.Location = new System.Drawing.Point(99, 20);
  256. this.button8.Name = "button8";
  257. this.button8.Size = new System.Drawing.Size(75, 23);
  258. this.button8.TabIndex = 21;
  259. this.button8.Text = "CRC16";
  260. this.button8.UseVisualStyleBackColor = true;
  261. this.button8.Click += new System.EventHandler(this.button8_Click);
  262. //
  263. // Form1
  264. //
  265. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  266. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  267. this.ClientSize = new System.Drawing.Size(661, 287);
  268. this.Controls.Add(this.button8);
  269. this.Controls.Add(this.button7);
  270. this.Controls.Add(this.button6);
  271. this.Controls.Add(this.textBox_ip);
  272. this.Controls.Add(this.label4);
  273. this.Controls.Add(this.label5);
  274. this.Controls.Add(this.textBox_port);
  275. this.Controls.Add(this.button5);
  276. this.Controls.Add(this.button4);
  277. this.Controls.Add(this.button3);
  278. this.Controls.Add(this.slider1);
  279. this.Controls.Add(this.label3);
  280. this.Controls.Add(this.button2);
  281. this.Controls.Add(this.button1);
  282. this.Controls.Add(this.BUTTON_DEMO2);
  283. this.Controls.Add(this.BUTTON_DEMO1);
  284. this.Controls.Add(this.TextBox_WID);
  285. this.Controls.Add(this.label2);
  286. this.Controls.Add(this.label1);
  287. this.Controls.Add(this.PLAYVOICE);
  288. this.Controls.Add(this.TextBox);
  289. this.Controls.Add(this.DISTEXT);
  290. this.Name = "Form1";
  291. this.ResumeLayout(false);
  292. this.PerformLayout();
  293. }
  294. #endregion
  295. private System.Windows.Forms.Button DISTEXT;
  296. private System.Windows.Forms.TextBox TextBox;
  297. private System.Windows.Forms.Button PLAYVOICE;
  298. private System.Windows.Forms.Label label1;
  299. private System.Windows.Forms.Label label2;
  300. private System.Windows.Forms.TextBox TextBox_WID;
  301. private System.Windows.Forms.Button BUTTON_DEMO1;
  302. private System.Windows.Forms.Button BUTTON_DEMO2;
  303. private System.Windows.Forms.Button button1;
  304. private System.Windows.Forms.Button button2;
  305. private System.Windows.Forms.Label label3;
  306. private DevComponents.DotNetBar.Controls.Slider slider1;
  307. private System.Windows.Forms.Button button3;
  308. private System.Windows.Forms.Button button4;
  309. private System.Windows.Forms.Button button5;
  310. private System.Windows.Forms.TextBox textBox_ip;
  311. private System.Windows.Forms.Label label4;
  312. private System.Windows.Forms.Label label5;
  313. private System.Windows.Forms.TextBox textBox_port;
  314. private System.Windows.Forms.Button button6;
  315. private System.Windows.Forms.Button button7;
  316. private System.Windows.Forms.Button button8;
  317. }
  318. }