GraphicsItemSetting.designer.cs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. namespace Dongke.WinForm.Controls.InvoiceLayout
  2. {
  3. partial class GraphicsItemSetting
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GraphicsItemSetting));
  30. this.lblLine = new System.Windows.Forms.Label();
  31. this.txtLineColor = new System.Windows.Forms.TextBox();
  32. this.numlocationX = new System.Windows.Forms.NumericUpDown();
  33. this.numlocationY = new System.Windows.Forms.NumericUpDown();
  34. this.numHeight = new System.Windows.Forms.NumericUpDown();
  35. this.numWidth = new System.Windows.Forms.NumericUpDown();
  36. this.label18 = new System.Windows.Forms.Label();
  37. this.label16 = new System.Windows.Forms.Label();
  38. this.lblSizeHeightUnit = new System.Windows.Forms.Label();
  39. this.lblSizeWidthUnit = new System.Windows.Forms.Label();
  40. this.lbllocationX = new System.Windows.Forms.Label();
  41. this.lbllocationY = new System.Windows.Forms.Label();
  42. this.lblSizeHeight = new System.Windows.Forms.Label();
  43. this.btnSelectLineColor = new System.Windows.Forms.Button();
  44. this.colorDialog = new System.Windows.Forms.ColorDialog();
  45. this.lblSizeWidth = new System.Windows.Forms.Label();
  46. this.lblFillColorName = new System.Windows.Forms.Label();
  47. this.txtFillColor = new System.Windows.Forms.TextBox();
  48. this.btnSelectFillColor = new System.Windows.Forms.Button();
  49. this.btnFillTransparent = new System.Windows.Forms.Button();
  50. this.toolTip = new System.Windows.Forms.ToolTip(this.components);
  51. this.lblFillBColor = new System.Windows.Forms.Label();
  52. this.lblFillColor = new System.Windows.Forms.Label();
  53. this.lblLineBColor = new System.Windows.Forms.Label();
  54. this.lblLineUnit = new System.Windows.Forms.Label();
  55. this.numLineWidth = new System.Windows.Forms.NumericUpDown();
  56. this.btnSelectLineTransparent = new System.Windows.Forms.Button();
  57. this.lblSize = new System.Windows.Forms.Label();
  58. this.lbllocation = new System.Windows.Forms.Label();
  59. this.lblLineColor = new System.Windows.Forms.Label();
  60. this.btnCancel = new Dongke.WinForm.Controls.BtnButton();
  61. this.btnOK = new Dongke.WinForm.Controls.BtnButton();
  62. ((System.ComponentModel.ISupportInitialize)(this.numlocationX)).BeginInit();
  63. ((System.ComponentModel.ISupportInitialize)(this.numlocationY)).BeginInit();
  64. ((System.ComponentModel.ISupportInitialize)(this.numHeight)).BeginInit();
  65. ((System.ComponentModel.ISupportInitialize)(this.numWidth)).BeginInit();
  66. ((System.ComponentModel.ISupportInitialize)(this.numLineWidth)).BeginInit();
  67. this.SuspendLayout();
  68. //
  69. // pnlBack
  70. //
  71. this.pnlBack.Size = new System.Drawing.Size(301, 235);
  72. //
  73. // lblLine
  74. //
  75. this.lblLine.AutoSize = true;
  76. this.lblLine.BackColor = System.Drawing.Color.Transparent;
  77. this.lblLine.Location = new System.Drawing.Point(48, 21);
  78. this.lblLine.Name = "lblLine";
  79. this.lblLine.Size = new System.Drawing.Size(17, 12);
  80. this.lblLine.TabIndex = 0;
  81. this.lblLine.Text = "线";
  82. //
  83. // txtLineColor
  84. //
  85. this.txtLineColor.BackColor = System.Drawing.SystemColors.Window;
  86. this.txtLineColor.Enabled = false;
  87. this.txtLineColor.Location = new System.Drawing.Point(71, 17);
  88. this.txtLineColor.Name = "txtLineColor";
  89. this.txtLineColor.Size = new System.Drawing.Size(91, 21);
  90. this.txtLineColor.TabIndex = 1;
  91. this.txtLineColor.TabStop = false;
  92. //
  93. // numlocationX
  94. //
  95. this.numlocationX.DecimalPlaces = 1;
  96. this.numlocationX.Increment = new decimal(new int[] {
  97. 1,
  98. 0,
  99. 0,
  100. 65536});
  101. this.numlocationX.Location = new System.Drawing.Point(86, 111);
  102. this.numlocationX.Maximum = new decimal(new int[] {
  103. 9999,
  104. 0,
  105. 0,
  106. 65536});
  107. this.numlocationX.Minimum = new decimal(new int[] {
  108. 1,
  109. 0,
  110. 0,
  111. -2147483648});
  112. this.numlocationX.Name = "numlocationX";
  113. this.numlocationX.Size = new System.Drawing.Size(53, 21);
  114. this.numlocationX.TabIndex = 15;
  115. this.numlocationX.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  116. this.numlocationX.Value = new decimal(new int[] {
  117. 10,
  118. 0,
  119. 0,
  120. 0});
  121. //
  122. // numlocationY
  123. //
  124. this.numlocationY.DecimalPlaces = 1;
  125. this.numlocationY.Increment = new decimal(new int[] {
  126. 1,
  127. 0,
  128. 0,
  129. 65536});
  130. this.numlocationY.Location = new System.Drawing.Point(207, 111);
  131. this.numlocationY.Maximum = new decimal(new int[] {
  132. 9999,
  133. 0,
  134. 0,
  135. 65536});
  136. this.numlocationY.Minimum = new decimal(new int[] {
  137. 1,
  138. 0,
  139. 0,
  140. -2147483648});
  141. this.numlocationY.Name = "numlocationY";
  142. this.numlocationY.Size = new System.Drawing.Size(53, 21);
  143. this.numlocationY.TabIndex = 18;
  144. this.numlocationY.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  145. this.numlocationY.Value = new decimal(new int[] {
  146. 10,
  147. 0,
  148. 0,
  149. 0});
  150. //
  151. // numHeight
  152. //
  153. this.numHeight.DecimalPlaces = 1;
  154. this.numHeight.Increment = new decimal(new int[] {
  155. 1,
  156. 0,
  157. 0,
  158. 65536});
  159. this.numHeight.Location = new System.Drawing.Point(207, 150);
  160. this.numHeight.Maximum = new decimal(new int[] {
  161. 9999,
  162. 0,
  163. 0,
  164. 65536});
  165. this.numHeight.Name = "numHeight";
  166. this.numHeight.Size = new System.Drawing.Size(53, 21);
  167. this.numHeight.TabIndex = 24;
  168. this.numHeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  169. this.numHeight.Value = new decimal(new int[] {
  170. 50,
  171. 0,
  172. 0,
  173. 0});
  174. //
  175. // numWidth
  176. //
  177. this.numWidth.DecimalPlaces = 1;
  178. this.numWidth.Increment = new decimal(new int[] {
  179. 1,
  180. 0,
  181. 0,
  182. 65536});
  183. this.numWidth.Location = new System.Drawing.Point(86, 150);
  184. this.numWidth.Maximum = new decimal(new int[] {
  185. 9999,
  186. 0,
  187. 0,
  188. 65536});
  189. this.numWidth.Name = "numWidth";
  190. this.numWidth.Size = new System.Drawing.Size(53, 21);
  191. this.numWidth.TabIndex = 21;
  192. this.numWidth.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  193. this.numWidth.Value = new decimal(new int[] {
  194. 50,
  195. 0,
  196. 0,
  197. 0});
  198. //
  199. // label18
  200. //
  201. this.label18.AutoSize = true;
  202. this.label18.BackColor = System.Drawing.Color.Transparent;
  203. this.label18.Location = new System.Drawing.Point(266, 114);
  204. this.label18.Name = "label18";
  205. this.label18.Size = new System.Drawing.Size(17, 12);
  206. this.label18.TabIndex = 19;
  207. this.label18.Text = "mm";
  208. //
  209. // label16
  210. //
  211. this.label16.AutoSize = true;
  212. this.label16.BackColor = System.Drawing.Color.Transparent;
  213. this.label16.Location = new System.Drawing.Point(145, 114);
  214. this.label16.Name = "label16";
  215. this.label16.Size = new System.Drawing.Size(17, 12);
  216. this.label16.TabIndex = 16;
  217. this.label16.Text = "mm";
  218. //
  219. // lblSizeHeightUnit
  220. //
  221. this.lblSizeHeightUnit.AutoSize = true;
  222. this.lblSizeHeightUnit.BackColor = System.Drawing.Color.Transparent;
  223. this.lblSizeHeightUnit.Location = new System.Drawing.Point(266, 153);
  224. this.lblSizeHeightUnit.Name = "lblSizeHeightUnit";
  225. this.lblSizeHeightUnit.Size = new System.Drawing.Size(17, 12);
  226. this.lblSizeHeightUnit.TabIndex = 25;
  227. this.lblSizeHeightUnit.Text = "mm";
  228. //
  229. // lblSizeWidthUnit
  230. //
  231. this.lblSizeWidthUnit.AutoSize = true;
  232. this.lblSizeWidthUnit.BackColor = System.Drawing.Color.Transparent;
  233. this.lblSizeWidthUnit.Location = new System.Drawing.Point(145, 153);
  234. this.lblSizeWidthUnit.Name = "lblSizeWidthUnit";
  235. this.lblSizeWidthUnit.Size = new System.Drawing.Size(17, 12);
  236. this.lblSizeWidthUnit.TabIndex = 22;
  237. this.lblSizeWidthUnit.Text = "mm";
  238. //
  239. // lbllocationX
  240. //
  241. this.lbllocationX.AutoSize = true;
  242. this.lbllocationX.BackColor = System.Drawing.Color.Transparent;
  243. this.lbllocationX.Location = new System.Drawing.Point(69, 114);
  244. this.lbllocationX.Name = "lbllocationX";
  245. this.lbllocationX.Size = new System.Drawing.Size(11, 12);
  246. this.lbllocationX.TabIndex = 14;
  247. this.lbllocationX.Text = "X";
  248. //
  249. // lbllocationY
  250. //
  251. this.lbllocationY.AutoSize = true;
  252. this.lbllocationY.BackColor = System.Drawing.Color.Transparent;
  253. this.lbllocationY.Location = new System.Drawing.Point(190, 114);
  254. this.lbllocationY.Name = "lbllocationY";
  255. this.lbllocationY.Size = new System.Drawing.Size(11, 12);
  256. this.lbllocationY.TabIndex = 17;
  257. this.lbllocationY.Text = "Y";
  258. //
  259. // lblSizeHeight
  260. //
  261. this.lblSizeHeight.AutoSize = true;
  262. this.lblSizeHeight.BackColor = System.Drawing.Color.Transparent;
  263. this.lblSizeHeight.Location = new System.Drawing.Point(184, 153);
  264. this.lblSizeHeight.Name = "lblSizeHeight";
  265. this.lblSizeHeight.Size = new System.Drawing.Size(17, 12);
  266. this.lblSizeHeight.TabIndex = 23;
  267. this.lblSizeHeight.Text = "高";
  268. //
  269. // btnSelectLineColor
  270. //
  271. this.btnSelectLineColor.Location = new System.Drawing.Point(168, 15);
  272. this.btnSelectLineColor.Name = "btnSelectLineColor";
  273. this.btnSelectLineColor.Size = new System.Drawing.Size(53, 23);
  274. this.btnSelectLineColor.TabIndex = 3;
  275. this.btnSelectLineColor.Text = "选择";
  276. this.btnSelectLineColor.UseVisualStyleBackColor = true;
  277. this.btnSelectLineColor.Click += new System.EventHandler(this.btnSelectLineColor_Click);
  278. //
  279. // lblSizeWidth
  280. //
  281. this.lblSizeWidth.AutoSize = true;
  282. this.lblSizeWidth.BackColor = System.Drawing.Color.Transparent;
  283. this.lblSizeWidth.Location = new System.Drawing.Point(63, 153);
  284. this.lblSizeWidth.Name = "lblSizeWidth";
  285. this.lblSizeWidth.Size = new System.Drawing.Size(17, 12);
  286. this.lblSizeWidth.TabIndex = 20;
  287. this.lblSizeWidth.Text = "宽";
  288. //
  289. // lblFillColorName
  290. //
  291. this.lblFillColorName.AutoSize = true;
  292. this.lblFillColorName.BackColor = System.Drawing.Color.Transparent;
  293. this.lblFillColorName.Location = new System.Drawing.Point(12, 73);
  294. this.lblFillColorName.Name = "lblFillColorName";
  295. this.lblFillColorName.Size = new System.Drawing.Size(53, 12);
  296. this.lblFillColorName.TabIndex = 8;
  297. this.lblFillColorName.Text = "背景填充";
  298. //
  299. // txtFillColor
  300. //
  301. this.txtFillColor.BackColor = System.Drawing.SystemColors.Window;
  302. this.txtFillColor.Enabled = false;
  303. this.txtFillColor.Location = new System.Drawing.Point(71, 70);
  304. this.txtFillColor.Name = "txtFillColor";
  305. this.txtFillColor.Size = new System.Drawing.Size(91, 21);
  306. this.txtFillColor.TabIndex = 9;
  307. this.txtFillColor.TabStop = false;
  308. //
  309. // btnSelectFillColor
  310. //
  311. this.btnSelectFillColor.Location = new System.Drawing.Point(168, 68);
  312. this.btnSelectFillColor.Name = "btnSelectFillColor";
  313. this.btnSelectFillColor.Size = new System.Drawing.Size(53, 23);
  314. this.btnSelectFillColor.TabIndex = 12;
  315. this.btnSelectFillColor.Text = "选择";
  316. this.btnSelectFillColor.UseVisualStyleBackColor = true;
  317. this.btnSelectFillColor.Click += new System.EventHandler(this.btnSelectFillColor_Click);
  318. //
  319. // btnFillTransparent
  320. //
  321. this.btnFillTransparent.Location = new System.Drawing.Point(227, 68);
  322. this.btnFillTransparent.Name = "btnFillTransparent";
  323. this.btnFillTransparent.Size = new System.Drawing.Size(53, 23);
  324. this.btnFillTransparent.TabIndex = 13;
  325. this.btnFillTransparent.Text = "透明";
  326. this.btnFillTransparent.UseVisualStyleBackColor = true;
  327. this.btnFillTransparent.Click += new System.EventHandler(this.btnFillTransparent_Click);
  328. //
  329. // toolTip
  330. //
  331. this.toolTip.AutoPopDelay = 5000;
  332. this.toolTip.InitialDelay = 500;
  333. this.toolTip.ReshowDelay = 500;
  334. //
  335. // lblFillBColor
  336. //
  337. this.lblFillBColor.BackColor = System.Drawing.Color.Black;
  338. this.lblFillBColor.Location = new System.Drawing.Point(76, 74);
  339. this.lblFillBColor.Name = "lblFillBColor";
  340. this.lblFillBColor.Size = new System.Drawing.Size(81, 13);
  341. this.lblFillBColor.TabIndex = 11;
  342. //
  343. // lblFillColor
  344. //
  345. this.lblFillColor.BackColor = System.Drawing.Color.White;
  346. this.lblFillColor.Location = new System.Drawing.Point(78, 76);
  347. this.lblFillColor.Name = "lblFillColor";
  348. this.lblFillColor.Size = new System.Drawing.Size(77, 9);
  349. this.lblFillColor.TabIndex = 10;
  350. //
  351. // lblLineBColor
  352. //
  353. this.lblLineBColor.BackColor = System.Drawing.Color.Black;
  354. this.lblLineBColor.Location = new System.Drawing.Point(76, 21);
  355. this.lblLineBColor.Name = "lblLineBColor";
  356. this.lblLineBColor.Size = new System.Drawing.Size(79, 13);
  357. this.lblLineBColor.TabIndex = 2;
  358. //
  359. // lblLineUnit
  360. //
  361. this.lblLineUnit.AutoSize = true;
  362. this.lblLineUnit.BackColor = System.Drawing.Color.Transparent;
  363. this.lblLineUnit.Location = new System.Drawing.Point(130, 48);
  364. this.lblLineUnit.Name = "lblLineUnit";
  365. this.lblLineUnit.Size = new System.Drawing.Size(17, 12);
  366. this.lblLineUnit.TabIndex = 6;
  367. this.lblLineUnit.Text = "mm";
  368. //
  369. // numLineWidth
  370. //
  371. this.numLineWidth.DecimalPlaces = 1;
  372. this.numLineWidth.Increment = new decimal(new int[] {
  373. 1,
  374. 0,
  375. 0,
  376. 65536});
  377. this.numLineWidth.Location = new System.Drawing.Point(71, 43);
  378. this.numLineWidth.Maximum = new decimal(new int[] {
  379. 9999,
  380. 0,
  381. 0,
  382. 65536});
  383. this.numLineWidth.Name = "numLineWidth";
  384. this.numLineWidth.Size = new System.Drawing.Size(53, 21);
  385. this.numLineWidth.TabIndex = 5;
  386. this.numLineWidth.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  387. this.numLineWidth.Value = new decimal(new int[] {
  388. 1,
  389. 0,
  390. 0,
  391. 0});
  392. //
  393. // btnSelectLineTransparent
  394. //
  395. this.btnSelectLineTransparent.Location = new System.Drawing.Point(227, 15);
  396. this.btnSelectLineTransparent.Name = "btnSelectLineTransparent";
  397. this.btnSelectLineTransparent.Size = new System.Drawing.Size(53, 23);
  398. this.btnSelectLineTransparent.TabIndex = 4;
  399. this.btnSelectLineTransparent.Text = "透明";
  400. this.btnSelectLineTransparent.UseVisualStyleBackColor = true;
  401. this.btnSelectLineTransparent.Click += new System.EventHandler(this.btnSelectLineTransparent_Click);
  402. //
  403. // lblSize
  404. //
  405. this.lblSize.AutoSize = true;
  406. this.lblSize.BackColor = System.Drawing.Color.Transparent;
  407. this.lblSize.Location = new System.Drawing.Point(12, 153);
  408. this.lblSize.Name = "lblSize";
  409. this.lblSize.Size = new System.Drawing.Size(29, 12);
  410. this.lblSize.TabIndex = 29;
  411. this.lblSize.Text = "尺寸";
  412. //
  413. // lbllocation
  414. //
  415. this.lbllocation.AutoSize = true;
  416. this.lbllocation.BackColor = System.Drawing.Color.Transparent;
  417. this.lbllocation.Location = new System.Drawing.Point(12, 114);
  418. this.lbllocation.Name = "lbllocation";
  419. this.lbllocation.Size = new System.Drawing.Size(29, 12);
  420. this.lbllocation.TabIndex = 28;
  421. this.lbllocation.Text = "位置";
  422. //
  423. // lblLineColor
  424. //
  425. this.lblLineColor.BackColor = System.Drawing.Color.White;
  426. this.lblLineColor.Location = new System.Drawing.Point(78, 23);
  427. this.lblLineColor.Name = "lblLineColor";
  428. this.lblLineColor.Size = new System.Drawing.Size(75, 9);
  429. this.lblLineColor.TabIndex = 30;
  430. //
  431. // btnCancel
  432. //
  433. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  434. this.btnCancel.BackColor = System.Drawing.Color.Transparent;
  435. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  436. this.btnCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  437. this.btnCancel.Location = new System.Drawing.Point(204, 196);
  438. this.btnCancel.Name = "btnCancel";
  439. this.btnCancel.Size = new System.Drawing.Size(85, 33);
  440. this.btnCancel.TabIndex = 31;
  441. this.btnCancel.Text = "取消";
  442. this.btnCancel.UseVisualStyleBackColor = true;
  443. //
  444. // btnOK
  445. //
  446. this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  447. this.btnOK.BackColor = System.Drawing.Color.Transparent;
  448. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  449. this.btnOK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  450. this.btnOK.Location = new System.Drawing.Point(113, 196);
  451. this.btnOK.Name = "btnOK";
  452. this.btnOK.Size = new System.Drawing.Size(85, 33);
  453. this.btnOK.TabIndex = 31;
  454. this.btnOK.Text = "确定";
  455. this.btnOK.UseVisualStyleBackColor = true;
  456. //
  457. // GraphicsItemSetting
  458. //
  459. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  460. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  461. this.ClientSize = new System.Drawing.Size(301, 257);
  462. this.Controls.Add(this.lblLineColor);
  463. this.Controls.Add(this.btnCancel);
  464. this.Controls.Add(this.btnOK);
  465. this.Controls.Add(this.lblSize);
  466. this.Controls.Add(this.lbllocation);
  467. this.Controls.Add(this.btnSelectLineTransparent);
  468. this.Controls.Add(this.numLineWidth);
  469. this.Controls.Add(this.lblLineBColor);
  470. this.Controls.Add(this.lblFillColor);
  471. this.Controls.Add(this.lblFillBColor);
  472. this.Controls.Add(this.txtFillColor);
  473. this.Controls.Add(this.btnFillTransparent);
  474. this.Controls.Add(this.btnSelectFillColor);
  475. this.Controls.Add(this.txtLineColor);
  476. this.Controls.Add(this.numlocationX);
  477. this.Controls.Add(this.numlocationY);
  478. this.Controls.Add(this.numHeight);
  479. this.Controls.Add(this.numWidth);
  480. this.Controls.Add(this.lblLineUnit);
  481. this.Controls.Add(this.label18);
  482. this.Controls.Add(this.label16);
  483. this.Controls.Add(this.lblSizeHeightUnit);
  484. this.Controls.Add(this.lblSizeWidthUnit);
  485. this.Controls.Add(this.lbllocationX);
  486. this.Controls.Add(this.lbllocationY);
  487. this.Controls.Add(this.lblSizeHeight);
  488. this.Controls.Add(this.btnSelectLineColor);
  489. this.Controls.Add(this.lblSizeWidth);
  490. this.Controls.Add(this.lblFillColorName);
  491. this.Controls.Add(this.lblLine);
  492. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  493. this.Name = "GraphicsItemSetting";
  494. this.ShowIcon = true;
  495. this.Text = "图形设置";
  496. this.Controls.SetChildIndex(this.pnlBack, 0);
  497. this.Controls.SetChildIndex(this.lblLine, 0);
  498. this.Controls.SetChildIndex(this.lblFillColorName, 0);
  499. this.Controls.SetChildIndex(this.lblSizeWidth, 0);
  500. this.Controls.SetChildIndex(this.btnSelectLineColor, 0);
  501. this.Controls.SetChildIndex(this.lblSizeHeight, 0);
  502. this.Controls.SetChildIndex(this.lbllocationY, 0);
  503. this.Controls.SetChildIndex(this.lbllocationX, 0);
  504. this.Controls.SetChildIndex(this.lblSizeWidthUnit, 0);
  505. this.Controls.SetChildIndex(this.lblSizeHeightUnit, 0);
  506. this.Controls.SetChildIndex(this.label16, 0);
  507. this.Controls.SetChildIndex(this.label18, 0);
  508. this.Controls.SetChildIndex(this.lblLineUnit, 0);
  509. this.Controls.SetChildIndex(this.numWidth, 0);
  510. this.Controls.SetChildIndex(this.numHeight, 0);
  511. this.Controls.SetChildIndex(this.numlocationY, 0);
  512. this.Controls.SetChildIndex(this.numlocationX, 0);
  513. this.Controls.SetChildIndex(this.txtLineColor, 0);
  514. this.Controls.SetChildIndex(this.btnSelectFillColor, 0);
  515. this.Controls.SetChildIndex(this.btnFillTransparent, 0);
  516. this.Controls.SetChildIndex(this.txtFillColor, 0);
  517. this.Controls.SetChildIndex(this.lblFillBColor, 0);
  518. this.Controls.SetChildIndex(this.lblFillColor, 0);
  519. this.Controls.SetChildIndex(this.lblLineBColor, 0);
  520. this.Controls.SetChildIndex(this.numLineWidth, 0);
  521. this.Controls.SetChildIndex(this.btnSelectLineTransparent, 0);
  522. this.Controls.SetChildIndex(this.lbllocation, 0);
  523. this.Controls.SetChildIndex(this.lblSize, 0);
  524. this.Controls.SetChildIndex(this.btnOK, 0);
  525. this.Controls.SetChildIndex(this.btnCancel, 0);
  526. this.Controls.SetChildIndex(this.lblLineColor, 0);
  527. ((System.ComponentModel.ISupportInitialize)(this.numlocationX)).EndInit();
  528. ((System.ComponentModel.ISupportInitialize)(this.numlocationY)).EndInit();
  529. ((System.ComponentModel.ISupportInitialize)(this.numHeight)).EndInit();
  530. ((System.ComponentModel.ISupportInitialize)(this.numWidth)).EndInit();
  531. ((System.ComponentModel.ISupportInitialize)(this.numLineWidth)).EndInit();
  532. this.ResumeLayout(false);
  533. this.PerformLayout();
  534. }
  535. #endregion
  536. private System.Windows.Forms.Label lblLine;
  537. private System.Windows.Forms.TextBox txtLineColor;
  538. private System.Windows.Forms.NumericUpDown numlocationX;
  539. private System.Windows.Forms.NumericUpDown numlocationY;
  540. private System.Windows.Forms.NumericUpDown numHeight;
  541. private System.Windows.Forms.NumericUpDown numWidth;
  542. private System.Windows.Forms.Label label18;
  543. private System.Windows.Forms.Label label16;
  544. private System.Windows.Forms.Label lblSizeHeightUnit;
  545. private System.Windows.Forms.Label lblSizeWidthUnit;
  546. private System.Windows.Forms.Label lbllocationX;
  547. private System.Windows.Forms.Label lbllocationY;
  548. private System.Windows.Forms.Label lblSizeHeight;
  549. private System.Windows.Forms.Button btnSelectLineColor;
  550. private System.Windows.Forms.ColorDialog colorDialog;
  551. private System.Windows.Forms.Label lblSizeWidth;
  552. private System.Windows.Forms.Label lblFillColorName;
  553. private System.Windows.Forms.TextBox txtFillColor;
  554. private System.Windows.Forms.Button btnSelectFillColor;
  555. private System.Windows.Forms.Button btnFillTransparent;
  556. private System.Windows.Forms.ToolTip toolTip;
  557. private System.Windows.Forms.Label lblFillBColor;
  558. private System.Windows.Forms.Label lblFillColor;
  559. private System.Windows.Forms.Label lblLineBColor;
  560. private System.Windows.Forms.Label lblLineUnit;
  561. private System.Windows.Forms.NumericUpDown numLineWidth;
  562. private System.Windows.Forms.Button btnSelectLineTransparent;
  563. private System.Windows.Forms.Label lblSize;
  564. private System.Windows.Forms.Label lbllocation;
  565. private System.Windows.Forms.Label lblLineColor;
  566. private Dongke.WinForm.Controls.BtnButton btnCancel;
  567. private Dongke.WinForm.Controls.BtnButton btnOK;
  568. }
  569. }