FileNamingRules.Designer.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. 
  2. using System;
  3. namespace SmartCoalApplication.MeasureProcedure
  4. {
  5. partial class FileNamingRules
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.listNames = new System.Windows.Forms.ListBox();
  31. this.groupBox2 = new System.Windows.Forms.GroupBox();
  32. this.btn_Del = new System.Windows.Forms.Button();
  33. this.btn_Save = new System.Windows.Forms.Button();
  34. this.button2 = new System.Windows.Forms.Button();
  35. this.button1 = new System.Windows.Forms.Button();
  36. this.groupBox19 = new System.Windows.Forms.GroupBox();
  37. this.textBox1 = new System.Windows.Forms.TextBox();
  38. this.label29 = new System.Windows.Forms.Label();
  39. this.groupBox5 = new System.Windows.Forms.GroupBox();
  40. this.textBox8 = new System.Windows.Forms.TextBox();
  41. this.textBox7 = new System.Windows.Forms.TextBox();
  42. this.label31 = new System.Windows.Forms.Label();
  43. this.label30 = new System.Windows.Forms.Label();
  44. this.radioButton2 = new System.Windows.Forms.RadioButton();
  45. this.textBox3 = new System.Windows.Forms.TextBox();
  46. this.radioButton1 = new System.Windows.Forms.RadioButton();
  47. this.comboBox1 = new System.Windows.Forms.ComboBox();
  48. this.label15 = new System.Windows.Forms.Label();
  49. this.textBox2 = new System.Windows.Forms.TextBox();
  50. this.label14 = new System.Windows.Forms.Label();
  51. this.textBox4 = new System.Windows.Forms.TextBox();
  52. this.label13 = new System.Windows.Forms.Label();
  53. this.listView1 = new System.Windows.Forms.ListView();
  54. this.groupBox1 = new System.Windows.Forms.GroupBox();
  55. this.textBox5 = new System.Windows.Forms.TextBox();
  56. this.label1 = new System.Windows.Forms.Label();
  57. this.groupBox2.SuspendLayout();
  58. this.groupBox19.SuspendLayout();
  59. this.groupBox5.SuspendLayout();
  60. this.groupBox1.SuspendLayout();
  61. this.SuspendLayout();
  62. //
  63. // listNames
  64. //
  65. this.listNames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  66. | System.Windows.Forms.AnchorStyles.Left)));
  67. this.listNames.FormattingEnabled = true;
  68. this.listNames.ItemHeight = 18;
  69. this.listNames.Location = new System.Drawing.Point(12, 8);
  70. this.listNames.Name = "listNames";
  71. this.listNames.Size = new System.Drawing.Size(188, 598);
  72. this.listNames.TabIndex = 1;
  73. this.listNames.SelectedIndexChanged += new System.EventHandler(this.listNames_SelectedChange);
  74. //
  75. // groupBox2
  76. //
  77. this.groupBox2.Controls.Add(this.btn_Del);
  78. this.groupBox2.Controls.Add(this.btn_Save);
  79. this.groupBox2.Controls.Add(this.button2);
  80. this.groupBox2.Controls.Add(this.button1);
  81. this.groupBox2.Location = new System.Drawing.Point(206, 8);
  82. this.groupBox2.Name = "groupBox2";
  83. this.groupBox2.Size = new System.Drawing.Size(394, 58);
  84. this.groupBox2.TabIndex = 3;
  85. this.groupBox2.TabStop = false;
  86. this.groupBox2.Text = "操作";
  87. //
  88. // btn_Del
  89. //
  90. this.btn_Del.Location = new System.Drawing.Point(71, 20);
  91. this.btn_Del.Name = "btn_Del";
  92. this.btn_Del.Size = new System.Drawing.Size(75, 23);
  93. this.btn_Del.TabIndex = 11;
  94. this.btn_Del.Text = "删除";
  95. this.btn_Del.UseVisualStyleBackColor = true;
  96. this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
  97. //
  98. // btn_Save
  99. //
  100. this.btn_Save.Location = new System.Drawing.Point(151, 20);
  101. this.btn_Save.Name = "btn_Save";
  102. this.btn_Save.Size = new System.Drawing.Size(75, 23);
  103. this.btn_Save.TabIndex = 2;
  104. this.btn_Save.Text = "保存";
  105. this.btn_Save.UseVisualStyleBackColor = true;
  106. this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click);
  107. //
  108. // button2
  109. //
  110. this.button2.Location = new System.Drawing.Point(313, 20);
  111. this.button2.Name = "button2";
  112. this.button2.Size = new System.Drawing.Size(75, 23);
  113. this.button2.TabIndex = 1;
  114. this.button2.Text = "取消";
  115. this.button2.UseVisualStyleBackColor = true;
  116. this.button2.Click += new System.EventHandler(this.button2_Click);
  117. //
  118. // button1
  119. //
  120. this.button1.Location = new System.Drawing.Point(232, 20);
  121. this.button1.Name = "button1";
  122. this.button1.Size = new System.Drawing.Size(75, 23);
  123. this.button1.TabIndex = 0;
  124. this.button1.Text = "新增";
  125. this.button1.UseVisualStyleBackColor = true;
  126. this.button1.Click += new System.EventHandler(this.button1_Click);
  127. //
  128. // groupBox19
  129. //
  130. this.groupBox19.Controls.Add(this.textBox1);
  131. this.groupBox19.Controls.Add(this.label29);
  132. this.groupBox19.Location = new System.Drawing.Point(206, 82);
  133. this.groupBox19.Name = "groupBox19";
  134. this.groupBox19.Size = new System.Drawing.Size(394, 58);
  135. this.groupBox19.TabIndex = 50;
  136. this.groupBox19.TabStop = false;
  137. this.groupBox19.Text = "當前使用";
  138. //
  139. // textBox1
  140. //
  141. this.textBox1.Location = new System.Drawing.Point(71, 19);
  142. this.textBox1.Name = "textBox1";
  143. this.textBox1.Size = new System.Drawing.Size(236, 28);
  144. this.textBox1.TabIndex = 1;
  145. //
  146. // label29
  147. //
  148. this.label29.AutoSize = true;
  149. this.label29.Location = new System.Drawing.Point(30, 23);
  150. this.label29.Name = "label29";
  151. this.label29.Size = new System.Drawing.Size(62, 18);
  152. this.label29.TabIndex = 0;
  153. this.label29.Text = "名稱:";
  154. //
  155. // groupBox5
  156. //
  157. this.groupBox5.Controls.Add(this.textBox8);
  158. this.groupBox5.Controls.Add(this.textBox7);
  159. this.groupBox5.Controls.Add(this.label31);
  160. this.groupBox5.Controls.Add(this.label30);
  161. this.groupBox5.Controls.Add(this.radioButton2);
  162. this.groupBox5.Controls.Add(this.textBox3);
  163. this.groupBox5.Controls.Add(this.radioButton1);
  164. this.groupBox5.Controls.Add(this.comboBox1);
  165. this.groupBox5.Controls.Add(this.label15);
  166. this.groupBox5.Controls.Add(this.textBox2);
  167. this.groupBox5.Controls.Add(this.label14);
  168. this.groupBox5.Controls.Add(this.textBox4);
  169. this.groupBox5.Controls.Add(this.label13);
  170. this.groupBox5.Controls.Add(this.listView1);
  171. this.groupBox5.Location = new System.Drawing.Point(206, 210);
  172. this.groupBox5.Name = "groupBox5";
  173. this.groupBox5.Size = new System.Drawing.Size(394, 408);
  174. this.groupBox5.TabIndex = 51;
  175. this.groupBox5.TabStop = false;
  176. this.groupBox5.Text = "信息";
  177. //
  178. // textBox8
  179. //
  180. this.textBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  181. | System.Windows.Forms.AnchorStyles.Left)));
  182. this.textBox8.Location = new System.Drawing.Point(280, 65);
  183. this.textBox8.Name = "textBox8";
  184. this.textBox8.Size = new System.Drawing.Size(108, 28);
  185. this.textBox8.TabIndex = 16;
  186. this.textBox8.TextChanged += new System.EventHandler(this.text_change);
  187. //
  188. // textBox7
  189. //
  190. this.textBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  191. | System.Windows.Forms.AnchorStyles.Left)));
  192. this.textBox7.Location = new System.Drawing.Point(280, 40);
  193. this.textBox7.Name = "textBox7";
  194. this.textBox7.Size = new System.Drawing.Size(108, 28);
  195. this.textBox7.TabIndex = 15;
  196. this.textBox7.TextChanged += new System.EventHandler(this.text_change);
  197. //
  198. // label31
  199. //
  200. this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  201. | System.Windows.Forms.AnchorStyles.Left)));
  202. this.label31.AutoSize = true;
  203. this.label31.Location = new System.Drawing.Point(241, 68);
  204. this.label31.Name = "label31";
  205. this.label31.Size = new System.Drawing.Size(44, 18);
  206. this.label31.TabIndex = 14;
  207. this.label31.Text = "Z2:";
  208. //
  209. // label30
  210. //
  211. this.label30.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  212. | System.Windows.Forms.AnchorStyles.Left)));
  213. this.label30.AutoSize = true;
  214. this.label30.Location = new System.Drawing.Point(241, 45);
  215. this.label30.Name = "label30";
  216. this.label30.Size = new System.Drawing.Size(44, 18);
  217. this.label30.TabIndex = 13;
  218. this.label30.Text = "Z1:";
  219. //
  220. // radioButton2
  221. //
  222. this.radioButton2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  223. | System.Windows.Forms.AnchorStyles.Left)));
  224. this.radioButton2.AutoSize = true;
  225. this.radioButton2.Location = new System.Drawing.Point(9, 89);
  226. this.radioButton2.Name = "radioButton2";
  227. this.radioButton2.Size = new System.Drawing.Size(69, 22);
  228. this.radioButton2.TabIndex = 11;
  229. this.radioButton2.Text = "重置";
  230. this.radioButton2.UseVisualStyleBackColor = true;
  231. this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
  232. //
  233. // textBox3
  234. //
  235. this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  236. | System.Windows.Forms.AnchorStyles.Left)));
  237. this.textBox3.Location = new System.Drawing.Point(77, 65);
  238. this.textBox3.Name = "textBox3";
  239. this.textBox3.Size = new System.Drawing.Size(108, 28);
  240. this.textBox3.TabIndex = 10;
  241. this.textBox3.Text = "1";
  242. this.textBox3.TextChanged += new System.EventHandler(this.text_change);
  243. //
  244. // radioButton1
  245. //
  246. this.radioButton1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  247. | System.Windows.Forms.AnchorStyles.Left)));
  248. this.radioButton1.AutoSize = true;
  249. this.radioButton1.Checked = true;
  250. this.radioButton1.Location = new System.Drawing.Point(9, 67);
  251. this.radioButton1.Name = "radioButton1";
  252. this.radioButton1.Size = new System.Drawing.Size(69, 22);
  253. this.radioButton1.TabIndex = 9;
  254. this.radioButton1.TabStop = true;
  255. this.radioButton1.Text = "延續";
  256. this.radioButton1.UseVisualStyleBackColor = true;
  257. this.radioButton1.CheckedChanged += new System.EventHandler(this.text_change);
  258. //
  259. // comboBox1
  260. //
  261. this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  262. | System.Windows.Forms.AnchorStyles.Left)));
  263. this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  264. this.comboBox1.FormattingEnabled = true;
  265. this.comboBox1.Location = new System.Drawing.Point(77, 41);
  266. this.comboBox1.Name = "comboBox1";
  267. this.comboBox1.Size = new System.Drawing.Size(108, 26);
  268. this.comboBox1.TabIndex = 8;
  269. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.text_change);
  270. //
  271. // label15
  272. //
  273. this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  274. | System.Windows.Forms.AnchorStyles.Left)));
  275. this.label15.AutoSize = true;
  276. this.label15.Location = new System.Drawing.Point(9, 45);
  277. this.label15.Name = "label15";
  278. this.label15.Size = new System.Drawing.Size(98, 18);
  279. this.label15.TabIndex = 5;
  280. this.label15.Text = "數值位數:";
  281. //
  282. // textBox2
  283. //
  284. this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  285. | System.Windows.Forms.AnchorStyles.Left)));
  286. this.textBox2.Location = new System.Drawing.Point(280, 15);
  287. this.textBox2.Name = "textBox2";
  288. this.textBox2.Size = new System.Drawing.Size(108, 28);
  289. this.textBox2.TabIndex = 4;
  290. this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
  291. //
  292. // label14
  293. //
  294. this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  295. | System.Windows.Forms.AnchorStyles.Left)));
  296. this.label14.AutoSize = true;
  297. this.label14.Location = new System.Drawing.Point(205, 20);
  298. this.label14.Name = "label14";
  299. this.label14.Size = new System.Drawing.Size(98, 18);
  300. this.label14.TabIndex = 3;
  301. this.label14.Text = "名稱格式:";
  302. //
  303. // textBox4
  304. //
  305. this.textBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  306. | System.Windows.Forms.AnchorStyles.Left)));
  307. this.textBox4.Location = new System.Drawing.Point(77, 16);
  308. this.textBox4.Name = "textBox4";
  309. this.textBox4.Size = new System.Drawing.Size(108, 28);
  310. this.textBox4.TabIndex = 2;
  311. this.textBox4.TextChanged += new System.EventHandler(this.text_change);
  312. //
  313. // label13
  314. //
  315. this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  316. | System.Windows.Forms.AnchorStyles.Left)));
  317. this.label13.AutoSize = true;
  318. this.label13.Location = new System.Drawing.Point(33, 21);
  319. this.label13.Name = "label13";
  320. this.label13.Size = new System.Drawing.Size(62, 18);
  321. this.label13.TabIndex = 1;
  322. this.label13.Text = "文本:";
  323. //
  324. // listView1
  325. //
  326. this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  327. | System.Windows.Forms.AnchorStyles.Left)));
  328. this.listView1.FullRowSelect = true;
  329. this.listView1.GridLines = true;
  330. this.listView1.HideSelection = false;
  331. this.listView1.Location = new System.Drawing.Point(8, 124);
  332. this.listView1.MultiSelect = false;
  333. this.listView1.Name = "listView1";
  334. this.listView1.Size = new System.Drawing.Size(380, 275);
  335. this.listView1.TabIndex = 12;
  336. this.listView1.UseCompatibleStateImageBehavior = false;
  337. this.listView1.View = System.Windows.Forms.View.Details;
  338. this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
  339. //
  340. // groupBox1
  341. //
  342. this.groupBox1.Controls.Add(this.textBox5);
  343. this.groupBox1.Controls.Add(this.label1);
  344. this.groupBox1.Location = new System.Drawing.Point(206, 146);
  345. this.groupBox1.Name = "groupBox1";
  346. this.groupBox1.Size = new System.Drawing.Size(394, 58);
  347. this.groupBox1.TabIndex = 52;
  348. this.groupBox1.TabStop = false;
  349. this.groupBox1.Text = "預覽";
  350. //
  351. // textBox5
  352. //
  353. this.textBox5.Location = new System.Drawing.Point(71, 19);
  354. this.textBox5.Name = "textBox5";
  355. this.textBox5.ReadOnly = true;
  356. this.textBox5.Size = new System.Drawing.Size(236, 28);
  357. this.textBox5.TabIndex = 1;
  358. //
  359. // label1
  360. //
  361. this.label1.AutoSize = true;
  362. this.label1.Location = new System.Drawing.Point(30, 23);
  363. this.label1.Name = "label1";
  364. this.label1.Size = new System.Drawing.Size(62, 18);
  365. this.label1.TabIndex = 0;
  366. this.label1.Text = "名稱:";
  367. //
  368. // FileNamingRules
  369. //
  370. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  371. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  372. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  373. this.ClientSize = new System.Drawing.Size(611, 626);
  374. this.Controls.Add(this.groupBox1);
  375. this.Controls.Add(this.groupBox5);
  376. this.Controls.Add(this.groupBox19);
  377. this.Controls.Add(this.groupBox2);
  378. this.Controls.Add(this.listNames);
  379. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  380. this.MaximizeBox = false;
  381. this.MinimizeBox = false;
  382. this.Name = "FileNamingRules";
  383. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  384. this.Text = "命名規則";
  385. this.Controls.SetChildIndex(this.listNames, 0);
  386. this.Controls.SetChildIndex(this.groupBox2, 0);
  387. this.Controls.SetChildIndex(this.groupBox19, 0);
  388. this.Controls.SetChildIndex(this.groupBox5, 0);
  389. this.Controls.SetChildIndex(this.groupBox1, 0);
  390. this.groupBox2.ResumeLayout(false);
  391. this.groupBox19.ResumeLayout(false);
  392. this.groupBox19.PerformLayout();
  393. this.groupBox5.ResumeLayout(false);
  394. this.groupBox5.PerformLayout();
  395. this.groupBox1.ResumeLayout(false);
  396. this.groupBox1.PerformLayout();
  397. this.ResumeLayout(false);
  398. }
  399. #endregion
  400. private System.Windows.Forms.ListBox listNames;
  401. public System.Windows.Forms.GroupBox groupBox2;
  402. private System.Windows.Forms.Button btn_Save;
  403. private System.Windows.Forms.Button button2;
  404. private System.Windows.Forms.Button button1;
  405. private System.Windows.Forms.Button btn_Del;
  406. public System.Windows.Forms.GroupBox groupBox19;
  407. private System.Windows.Forms.Label label29;
  408. private System.Windows.Forms.TextBox textBox1;
  409. public System.Windows.Forms.GroupBox groupBox5;
  410. private System.Windows.Forms.TextBox textBox8;
  411. private System.Windows.Forms.TextBox textBox7;
  412. private System.Windows.Forms.Label label31;
  413. private System.Windows.Forms.Label label30;
  414. private System.Windows.Forms.RadioButton radioButton2;
  415. private System.Windows.Forms.TextBox textBox3;
  416. private System.Windows.Forms.RadioButton radioButton1;
  417. private System.Windows.Forms.ComboBox comboBox1;
  418. private System.Windows.Forms.Label label15;
  419. private System.Windows.Forms.TextBox textBox2;
  420. private System.Windows.Forms.Label label14;
  421. private System.Windows.Forms.TextBox textBox4;
  422. private System.Windows.Forms.Label label13;
  423. private System.Windows.Forms.ListView listView1;
  424. public System.Windows.Forms.GroupBox groupBox1;
  425. private System.Windows.Forms.TextBox textBox5;
  426. private System.Windows.Forms.Label label1;
  427. }
  428. }