GridItemColumnSetting.designer.cs 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023
  1. namespace Dongke.WinForm.Controls.InvoiceLayout
  2. {
  3. partial class GridItemColumnSetting
  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(GridItemColumnSetting));
  30. this.btnCancel = new Dongke.WinForm.Controls.BtnButton();
  31. this.btnOK = new Dongke.WinForm.Controls.BtnButton();
  32. this.grbTextAlignment = new System.Windows.Forms.GroupBox();
  33. this.rbtnEvenness = new System.Windows.Forms.RadioButton();
  34. this.rbtnRight = new System.Windows.Forms.RadioButton();
  35. this.rbtnCenter = new System.Windows.Forms.RadioButton();
  36. this.rbtnLeft = new System.Windows.Forms.RadioButton();
  37. this.lblLineSpace = new System.Windows.Forms.Label();
  38. this.numLineSpace = new System.Windows.Forms.NumericUpDown();
  39. this.label8 = new System.Windows.Forms.Label();
  40. this.lblCharSpace = new System.Windows.Forms.Label();
  41. this.label10 = new System.Windows.Forms.Label();
  42. this.numCharSpace = new System.Windows.Forms.NumericUpDown();
  43. this.lblWidth = new System.Windows.Forms.Label();
  44. this.label12 = new System.Windows.Forms.Label();
  45. this.numWidth = new System.Windows.Forms.NumericUpDown();
  46. this.lblCharCount = new System.Windows.Forms.Label();
  47. this.numCharCount = new System.Windows.Forms.NumericUpDown();
  48. this.txtPreview = new System.Windows.Forms.TextBox();
  49. this.lblPreview = new System.Windows.Forms.Label();
  50. this.ddlDefaultValue = new System.Windows.Forms.ComboBox();
  51. this.ddlTextFormat = new System.Windows.Forms.ComboBox();
  52. this.lblDefaultValue = new System.Windows.Forms.Label();
  53. this.lblTextFormat = new System.Windows.Forms.Label();
  54. this.btnSelectColor = new System.Windows.Forms.Button();
  55. this.colorDialog = new System.Windows.Forms.ColorDialog();
  56. this.lblItemName = new System.Windows.Forms.Label();
  57. this.txtColName = new System.Windows.Forms.TextBox();
  58. this.toolTip = new System.Windows.Forms.ToolTip(this.components);
  59. this.btnFont = new System.Windows.Forms.Button();
  60. this.grbTextOption = new System.Windows.Forms.GroupBox();
  61. this.ckbWrap = new System.Windows.Forms.CheckBox();
  62. this.grbTextAlignmentV = new System.Windows.Forms.GroupBox();
  63. this.rbtnBottom = new System.Windows.Forms.RadioButton();
  64. this.rbtnCenterV = new System.Windows.Forms.RadioButton();
  65. this.rbtnTop = new System.Windows.Forms.RadioButton();
  66. this.fontDialog = new System.Windows.Forms.FontDialog();
  67. this.txtHeaderText = new System.Windows.Forms.TextBox();
  68. this.label1 = new System.Windows.Forms.Label();
  69. this.chkPic = new System.Windows.Forms.CheckBox();
  70. this.chkM = new System.Windows.Forms.CheckBox();
  71. this.chkFixedRatio = new System.Windows.Forms.CheckBox();
  72. this.grbHeadOption = new System.Windows.Forms.GroupBox();
  73. this.ckbWrapHead = new System.Windows.Forms.CheckBox();
  74. this.btnFontHead = new System.Windows.Forms.Button();
  75. this.numCharCountHead = new System.Windows.Forms.NumericUpDown();
  76. this.numCharSpaceHead = new System.Windows.Forms.NumericUpDown();
  77. this.grbTextAlignmentVHead = new System.Windows.Forms.GroupBox();
  78. this.rbtnBottomHead = new System.Windows.Forms.RadioButton();
  79. this.rbtnCenterVHead = new System.Windows.Forms.RadioButton();
  80. this.rbtnTopHead = new System.Windows.Forms.RadioButton();
  81. this.grbTextAlignmentHead = new System.Windows.Forms.GroupBox();
  82. this.rbtnEvennessHead = new System.Windows.Forms.RadioButton();
  83. this.rbtnRightHead = new System.Windows.Forms.RadioButton();
  84. this.rbtnCenterHead = new System.Windows.Forms.RadioButton();
  85. this.rbtnLeftHead = new System.Windows.Forms.RadioButton();
  86. this.numLineSpaceHead = new System.Windows.Forms.NumericUpDown();
  87. this.btnSelectColorHead = new System.Windows.Forms.Button();
  88. this.label4 = new System.Windows.Forms.Label();
  89. this.label5 = new System.Windows.Forms.Label();
  90. this.label6 = new System.Windows.Forms.Label();
  91. this.label7 = new System.Windows.Forms.Label();
  92. this.label9 = new System.Windows.Forms.Label();
  93. this.grbTextAlignment.SuspendLayout();
  94. ((System.ComponentModel.ISupportInitialize)(this.numLineSpace)).BeginInit();
  95. ((System.ComponentModel.ISupportInitialize)(this.numCharSpace)).BeginInit();
  96. ((System.ComponentModel.ISupportInitialize)(this.numWidth)).BeginInit();
  97. ((System.ComponentModel.ISupportInitialize)(this.numCharCount)).BeginInit();
  98. this.grbTextOption.SuspendLayout();
  99. this.grbTextAlignmentV.SuspendLayout();
  100. this.grbHeadOption.SuspendLayout();
  101. ((System.ComponentModel.ISupportInitialize)(this.numCharCountHead)).BeginInit();
  102. ((System.ComponentModel.ISupportInitialize)(this.numCharSpaceHead)).BeginInit();
  103. this.grbTextAlignmentVHead.SuspendLayout();
  104. this.grbTextAlignmentHead.SuspendLayout();
  105. ((System.ComponentModel.ISupportInitialize)(this.numLineSpaceHead)).BeginInit();
  106. this.SuspendLayout();
  107. //
  108. // pnlBack
  109. //
  110. this.pnlBack.Size = new System.Drawing.Size(437, 500);
  111. //
  112. // btnCancel
  113. //
  114. this.btnCancel.BackColor = System.Drawing.Color.Transparent;
  115. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  116. this.btnCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  117. this.btnCancel.Location = new System.Drawing.Point(340, 465);
  118. this.btnCancel.Name = "btnCancel";
  119. this.btnCancel.Size = new System.Drawing.Size(85, 33);
  120. this.btnCancel.TabIndex = 17;
  121. this.btnCancel.Text = "取消";
  122. this.btnCancel.UseVisualStyleBackColor = true;
  123. //
  124. // btnOK
  125. //
  126. this.btnOK.BackColor = System.Drawing.Color.Transparent;
  127. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  128. this.btnOK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  129. this.btnOK.Location = new System.Drawing.Point(249, 465);
  130. this.btnOK.Name = "btnOK";
  131. this.btnOK.Size = new System.Drawing.Size(85, 33);
  132. this.btnOK.TabIndex = 16;
  133. this.btnOK.Text = "确定";
  134. this.btnOK.UseVisualStyleBackColor = true;
  135. //
  136. // grbTextAlignment
  137. //
  138. this.grbTextAlignment.Controls.Add(this.rbtnEvenness);
  139. this.grbTextAlignment.Controls.Add(this.rbtnRight);
  140. this.grbTextAlignment.Controls.Add(this.rbtnCenter);
  141. this.grbTextAlignment.Controls.Add(this.rbtnLeft);
  142. this.grbTextAlignment.Location = new System.Drawing.Point(210, 20);
  143. this.grbTextAlignment.Name = "grbTextAlignment";
  144. this.grbTextAlignment.Size = new System.Drawing.Size(95, 111);
  145. this.grbTextAlignment.TabIndex = 11;
  146. this.grbTextAlignment.TabStop = false;
  147. this.grbTextAlignment.Text = "水平对齐";
  148. //
  149. // rbtnEvenness
  150. //
  151. this.rbtnEvenness.AutoSize = true;
  152. this.rbtnEvenness.Location = new System.Drawing.Point(10, 83);
  153. this.rbtnEvenness.Name = "rbtnEvenness";
  154. this.rbtnEvenness.Size = new System.Drawing.Size(71, 16);
  155. this.rbtnEvenness.TabIndex = 3;
  156. this.rbtnEvenness.TabStop = true;
  157. this.rbtnEvenness.Text = "两端对齐";
  158. this.rbtnEvenness.UseVisualStyleBackColor = true;
  159. this.rbtnEvenness.CheckedChanged += new System.EventHandler(this.rbtnTextAlignment_CheckedChanged);
  160. //
  161. // rbtnRight
  162. //
  163. this.rbtnRight.AutoSize = true;
  164. this.rbtnRight.Location = new System.Drawing.Point(10, 61);
  165. this.rbtnRight.Name = "rbtnRight";
  166. this.rbtnRight.Size = new System.Drawing.Size(59, 16);
  167. this.rbtnRight.TabIndex = 2;
  168. this.rbtnRight.TabStop = true;
  169. this.rbtnRight.Text = "右对齐";
  170. this.rbtnRight.UseVisualStyleBackColor = true;
  171. this.rbtnRight.CheckedChanged += new System.EventHandler(this.rbtnTextAlignment_CheckedChanged);
  172. //
  173. // rbtnCenter
  174. //
  175. this.rbtnCenter.AutoSize = true;
  176. this.rbtnCenter.Location = new System.Drawing.Point(10, 39);
  177. this.rbtnCenter.Name = "rbtnCenter";
  178. this.rbtnCenter.Size = new System.Drawing.Size(71, 16);
  179. this.rbtnCenter.TabIndex = 1;
  180. this.rbtnCenter.Text = "居中对齐";
  181. this.rbtnCenter.UseVisualStyleBackColor = true;
  182. this.rbtnCenter.CheckedChanged += new System.EventHandler(this.rbtnTextAlignment_CheckedChanged);
  183. //
  184. // rbtnLeft
  185. //
  186. this.rbtnLeft.AutoSize = true;
  187. this.rbtnLeft.Checked = true;
  188. this.rbtnLeft.Location = new System.Drawing.Point(10, 17);
  189. this.rbtnLeft.Name = "rbtnLeft";
  190. this.rbtnLeft.Size = new System.Drawing.Size(59, 16);
  191. this.rbtnLeft.TabIndex = 0;
  192. this.rbtnLeft.TabStop = true;
  193. this.rbtnLeft.Text = "左对齐";
  194. this.rbtnLeft.UseVisualStyleBackColor = true;
  195. this.rbtnLeft.CheckedChanged += new System.EventHandler(this.rbtnTextAlignment_CheckedChanged);
  196. //
  197. // lblLineSpace
  198. //
  199. this.lblLineSpace.AutoSize = true;
  200. this.lblLineSpace.Location = new System.Drawing.Point(109, 20);
  201. this.lblLineSpace.Name = "lblLineSpace";
  202. this.lblLineSpace.Size = new System.Drawing.Size(29, 12);
  203. this.lblLineSpace.TabIndex = 3;
  204. this.lblLineSpace.Text = "行距";
  205. //
  206. // numLineSpace
  207. //
  208. this.numLineSpace.DecimalPlaces = 1;
  209. this.numLineSpace.Increment = new decimal(new int[] {
  210. 1,
  211. 0,
  212. 0,
  213. 65536});
  214. this.numLineSpace.Location = new System.Drawing.Point(111, 35);
  215. this.numLineSpace.Maximum = new decimal(new int[] {
  216. 999,
  217. 0,
  218. 0,
  219. 65536});
  220. this.numLineSpace.Minimum = new decimal(new int[] {
  221. 999,
  222. 0,
  223. 0,
  224. -2147418112});
  225. this.numLineSpace.Name = "numLineSpace";
  226. this.numLineSpace.Size = new System.Drawing.Size(53, 21);
  227. this.numLineSpace.TabIndex = 4;
  228. this.numLineSpace.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  229. //
  230. // label8
  231. //
  232. this.label8.AutoSize = true;
  233. this.label8.Location = new System.Drawing.Point(167, 39);
  234. this.label8.Name = "label8";
  235. this.label8.Size = new System.Drawing.Size(17, 12);
  236. this.label8.TabIndex = 5;
  237. this.label8.Text = "mm";
  238. //
  239. // lblCharSpace
  240. //
  241. this.lblCharSpace.AutoSize = true;
  242. this.lblCharSpace.Location = new System.Drawing.Point(18, 20);
  243. this.lblCharSpace.Name = "lblCharSpace";
  244. this.lblCharSpace.Size = new System.Drawing.Size(41, 12);
  245. this.lblCharSpace.TabIndex = 0;
  246. this.lblCharSpace.Text = "字间距";
  247. //
  248. // label10
  249. //
  250. this.label10.AutoSize = true;
  251. this.label10.Location = new System.Drawing.Point(79, 39);
  252. this.label10.Name = "label10";
  253. this.label10.Size = new System.Drawing.Size(17, 12);
  254. this.label10.TabIndex = 2;
  255. this.label10.Text = "mm";
  256. //
  257. // numCharSpace
  258. //
  259. this.numCharSpace.DecimalPlaces = 1;
  260. this.numCharSpace.Increment = new decimal(new int[] {
  261. 1,
  262. 0,
  263. 0,
  264. 65536});
  265. this.numCharSpace.Location = new System.Drawing.Point(20, 35);
  266. this.numCharSpace.Maximum = new decimal(new int[] {
  267. 999,
  268. 0,
  269. 0,
  270. 65536});
  271. this.numCharSpace.Minimum = new decimal(new int[] {
  272. 999,
  273. 0,
  274. 0,
  275. -2147418112});
  276. this.numCharSpace.Name = "numCharSpace";
  277. this.numCharSpace.Size = new System.Drawing.Size(53, 21);
  278. this.numCharSpace.TabIndex = 1;
  279. this.numCharSpace.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  280. //
  281. // lblWidth
  282. //
  283. this.lblWidth.AutoSize = true;
  284. this.lblWidth.BackColor = System.Drawing.Color.Transparent;
  285. this.lblWidth.Location = new System.Drawing.Point(258, 31);
  286. this.lblWidth.Name = "lblWidth";
  287. this.lblWidth.Size = new System.Drawing.Size(29, 12);
  288. this.lblWidth.TabIndex = 2;
  289. this.lblWidth.Text = "列宽";
  290. //
  291. // label12
  292. //
  293. this.label12.AutoSize = true;
  294. this.label12.BackColor = System.Drawing.Color.Transparent;
  295. this.label12.Location = new System.Drawing.Point(351, 31);
  296. this.label12.Name = "label12";
  297. this.label12.Size = new System.Drawing.Size(17, 12);
  298. this.label12.TabIndex = 4;
  299. this.label12.Text = "mm";
  300. //
  301. // numWidth
  302. //
  303. this.numWidth.DecimalPlaces = 1;
  304. this.numWidth.Increment = new decimal(new int[] {
  305. 1,
  306. 0,
  307. 0,
  308. 65536});
  309. this.numWidth.Location = new System.Drawing.Point(293, 27);
  310. this.numWidth.Maximum = new decimal(new int[] {
  311. 9999,
  312. 0,
  313. 0,
  314. 65536});
  315. this.numWidth.Minimum = new decimal(new int[] {
  316. 1,
  317. 0,
  318. 0,
  319. 0});
  320. this.numWidth.Name = "numWidth";
  321. this.numWidth.Size = new System.Drawing.Size(53, 21);
  322. this.numWidth.TabIndex = 3;
  323. this.numWidth.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  324. this.numWidth.Value = new decimal(new int[] {
  325. 40,
  326. 0,
  327. 0,
  328. 0});
  329. this.numWidth.ValueChanged += new System.EventHandler(this.numCharCount_ValueChanged);
  330. //
  331. // lblCharCount
  332. //
  333. this.lblCharCount.AutoSize = true;
  334. this.lblCharCount.Location = new System.Drawing.Point(18, 63);
  335. this.lblCharCount.Name = "lblCharCount";
  336. this.lblCharCount.Size = new System.Drawing.Size(65, 12);
  337. this.lblCharCount.TabIndex = 6;
  338. this.lblCharCount.Text = "单行文字数";
  339. //
  340. // numCharCount
  341. //
  342. this.numCharCount.Location = new System.Drawing.Point(20, 78);
  343. this.numCharCount.Maximum = new decimal(new int[] {
  344. 99,
  345. 0,
  346. 0,
  347. 0});
  348. this.numCharCount.Name = "numCharCount";
  349. this.numCharCount.Size = new System.Drawing.Size(53, 21);
  350. this.numCharCount.TabIndex = 7;
  351. this.numCharCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  352. this.numCharCount.ValueChanged += new System.EventHandler(this.numCharCount_ValueChanged);
  353. //
  354. // txtPreview
  355. //
  356. this.txtPreview.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  357. this.txtPreview.ForeColor = System.Drawing.Color.Black;
  358. this.txtPreview.ImeMode = System.Windows.Forms.ImeMode.Hiragana;
  359. this.txtPreview.Location = new System.Drawing.Point(12, 356);
  360. this.txtPreview.Multiline = true;
  361. this.txtPreview.Name = "txtPreview";
  362. this.txtPreview.Size = new System.Drawing.Size(413, 74);
  363. this.txtPreview.TabIndex = 8;
  364. this.txtPreview.Text = "表格单元内容";
  365. this.txtPreview.WordWrap = false;
  366. this.txtPreview.FontChanged += new System.EventHandler(this.txtPreview_FontChanged);
  367. //
  368. // lblPreview
  369. //
  370. this.lblPreview.AutoSize = true;
  371. this.lblPreview.BackColor = System.Drawing.Color.Transparent;
  372. this.lblPreview.Location = new System.Drawing.Point(10, 341);
  373. this.lblPreview.Name = "lblPreview";
  374. this.lblPreview.Size = new System.Drawing.Size(29, 12);
  375. this.lblPreview.TabIndex = 7;
  376. this.lblPreview.Text = "示例";
  377. //
  378. // ddlDefaultValue
  379. //
  380. this.ddlDefaultValue.FormattingEnabled = true;
  381. this.ddlDefaultValue.Location = new System.Drawing.Point(59, 438);
  382. this.ddlDefaultValue.Name = "ddlDefaultValue";
  383. this.ddlDefaultValue.Size = new System.Drawing.Size(144, 20);
  384. this.ddlDefaultValue.TabIndex = 10;
  385. //
  386. // ddlTextFormat
  387. //
  388. this.ddlTextFormat.FormattingEnabled = true;
  389. this.ddlTextFormat.Location = new System.Drawing.Point(244, 438);
  390. this.ddlTextFormat.Name = "ddlTextFormat";
  391. this.ddlTextFormat.Size = new System.Drawing.Size(181, 20);
  392. this.ddlTextFormat.TabIndex = 12;
  393. this.ddlTextFormat.SelectedIndexChanged += new System.EventHandler(this.ddlTextFormat_SelectedIndexChanged);
  394. //
  395. // lblDefaultValue
  396. //
  397. this.lblDefaultValue.AutoSize = true;
  398. this.lblDefaultValue.BackColor = System.Drawing.Color.Transparent;
  399. this.lblDefaultValue.Location = new System.Drawing.Point(12, 441);
  400. this.lblDefaultValue.Name = "lblDefaultValue";
  401. this.lblDefaultValue.Size = new System.Drawing.Size(41, 12);
  402. this.lblDefaultValue.TabIndex = 9;
  403. this.lblDefaultValue.Text = "初始值";
  404. //
  405. // lblTextFormat
  406. //
  407. this.lblTextFormat.AutoSize = true;
  408. this.lblTextFormat.BackColor = System.Drawing.Color.Transparent;
  409. this.lblTextFormat.Location = new System.Drawing.Point(209, 441);
  410. this.lblTextFormat.Name = "lblTextFormat";
  411. this.lblTextFormat.Size = new System.Drawing.Size(29, 12);
  412. this.lblTextFormat.TabIndex = 11;
  413. this.lblTextFormat.Text = "格式";
  414. //
  415. // btnSelectColor
  416. //
  417. this.btnSelectColor.Location = new System.Drawing.Point(20, 108);
  418. this.btnSelectColor.Name = "btnSelectColor";
  419. this.btnSelectColor.Size = new System.Drawing.Size(75, 23);
  420. this.btnSelectColor.TabIndex = 9;
  421. this.btnSelectColor.Text = "颜色...";
  422. this.btnSelectColor.UseVisualStyleBackColor = true;
  423. this.btnSelectColor.Click += new System.EventHandler(this.btnSelectColor_Click);
  424. //
  425. // lblItemName
  426. //
  427. this.lblItemName.AutoSize = true;
  428. this.lblItemName.BackColor = System.Drawing.Color.Transparent;
  429. this.lblItemName.Enabled = false;
  430. this.lblItemName.Location = new System.Drawing.Point(389, 9);
  431. this.lblItemName.Name = "lblItemName";
  432. this.lblItemName.Size = new System.Drawing.Size(29, 12);
  433. this.lblItemName.TabIndex = 0;
  434. this.lblItemName.Text = "列名";
  435. this.lblItemName.Visible = false;
  436. //
  437. // txtColName
  438. //
  439. this.txtColName.Enabled = false;
  440. this.txtColName.Location = new System.Drawing.Point(392, 27);
  441. this.txtColName.MaxLength = 30;
  442. this.txtColName.Name = "txtColName";
  443. this.txtColName.ReadOnly = true;
  444. this.txtColName.Size = new System.Drawing.Size(26, 21);
  445. this.txtColName.TabIndex = 1;
  446. this.txtColName.Visible = false;
  447. //
  448. // toolTip
  449. //
  450. this.toolTip.AutoPopDelay = 5000;
  451. this.toolTip.InitialDelay = 500;
  452. this.toolTip.ReshowDelay = 500;
  453. //
  454. // btnFont
  455. //
  456. this.btnFont.Location = new System.Drawing.Point(111, 108);
  457. this.btnFont.Name = "btnFont";
  458. this.btnFont.Size = new System.Drawing.Size(75, 23);
  459. this.btnFont.TabIndex = 10;
  460. this.btnFont.Text = "字体...";
  461. this.btnFont.UseVisualStyleBackColor = true;
  462. this.btnFont.Click += new System.EventHandler(this.btnFont_Click);
  463. //
  464. // grbTextOption
  465. //
  466. this.grbTextOption.BackColor = System.Drawing.Color.Transparent;
  467. this.grbTextOption.Controls.Add(this.ckbWrap);
  468. this.grbTextOption.Controls.Add(this.btnFont);
  469. this.grbTextOption.Controls.Add(this.numCharCount);
  470. this.grbTextOption.Controls.Add(this.numCharSpace);
  471. this.grbTextOption.Controls.Add(this.grbTextAlignmentV);
  472. this.grbTextOption.Controls.Add(this.grbTextAlignment);
  473. this.grbTextOption.Controls.Add(this.numLineSpace);
  474. this.grbTextOption.Controls.Add(this.btnSelectColor);
  475. this.grbTextOption.Controls.Add(this.label10);
  476. this.grbTextOption.Controls.Add(this.label8);
  477. this.grbTextOption.Controls.Add(this.lblCharCount);
  478. this.grbTextOption.Controls.Add(this.lblLineSpace);
  479. this.grbTextOption.Controls.Add(this.lblCharSpace);
  480. this.grbTextOption.Location = new System.Drawing.Point(12, 198);
  481. this.grbTextOption.Name = "grbTextOption";
  482. this.grbTextOption.Size = new System.Drawing.Size(413, 140);
  483. this.grbTextOption.TabIndex = 6;
  484. this.grbTextOption.TabStop = false;
  485. this.grbTextOption.Text = "列文本选项";
  486. //
  487. // ckbWrap
  488. //
  489. this.ckbWrap.AutoSize = true;
  490. this.ckbWrap.BackColor = System.Drawing.Color.Transparent;
  491. this.ckbWrap.Location = new System.Drawing.Point(111, 78);
  492. this.ckbWrap.Name = "ckbWrap";
  493. this.ckbWrap.Size = new System.Drawing.Size(72, 16);
  494. this.ckbWrap.TabIndex = 8;
  495. this.ckbWrap.Text = "自动换行";
  496. this.ckbWrap.UseVisualStyleBackColor = false;
  497. //
  498. // grbTextAlignmentV
  499. //
  500. this.grbTextAlignmentV.Controls.Add(this.rbtnBottom);
  501. this.grbTextAlignmentV.Controls.Add(this.rbtnCenterV);
  502. this.grbTextAlignmentV.Controls.Add(this.rbtnTop);
  503. this.grbTextAlignmentV.Location = new System.Drawing.Point(311, 20);
  504. this.grbTextAlignmentV.Name = "grbTextAlignmentV";
  505. this.grbTextAlignmentV.Size = new System.Drawing.Size(95, 111);
  506. this.grbTextAlignmentV.TabIndex = 12;
  507. this.grbTextAlignmentV.TabStop = false;
  508. this.grbTextAlignmentV.Text = "垂直对齐";
  509. //
  510. // rbtnBottom
  511. //
  512. this.rbtnBottom.AutoSize = true;
  513. this.rbtnBottom.Location = new System.Drawing.Point(10, 61);
  514. this.rbtnBottom.Name = "rbtnBottom";
  515. this.rbtnBottom.Size = new System.Drawing.Size(71, 16);
  516. this.rbtnBottom.TabIndex = 2;
  517. this.rbtnBottom.TabStop = true;
  518. this.rbtnBottom.Text = "底端对齐";
  519. this.rbtnBottom.UseVisualStyleBackColor = true;
  520. this.rbtnBottom.CheckedChanged += new System.EventHandler(this.rbtnTextAlignment_CheckedChanged);
  521. //
  522. // rbtnCenterV
  523. //
  524. this.rbtnCenterV.AutoSize = true;
  525. this.rbtnCenterV.Location = new System.Drawing.Point(10, 39);
  526. this.rbtnCenterV.Name = "rbtnCenterV";
  527. this.rbtnCenterV.Size = new System.Drawing.Size(71, 16);
  528. this.rbtnCenterV.TabIndex = 1;
  529. this.rbtnCenterV.Text = "垂直居中";
  530. this.rbtnCenterV.UseVisualStyleBackColor = true;
  531. this.rbtnCenterV.CheckedChanged += new System.EventHandler(this.rbtnTextAlignment_CheckedChanged);
  532. //
  533. // rbtnTop
  534. //
  535. this.rbtnTop.AutoSize = true;
  536. this.rbtnTop.Checked = true;
  537. this.rbtnTop.Location = new System.Drawing.Point(10, 17);
  538. this.rbtnTop.Name = "rbtnTop";
  539. this.rbtnTop.Size = new System.Drawing.Size(71, 16);
  540. this.rbtnTop.TabIndex = 0;
  541. this.rbtnTop.TabStop = true;
  542. this.rbtnTop.Text = "顶端对齐";
  543. this.rbtnTop.UseVisualStyleBackColor = true;
  544. this.rbtnTop.CheckedChanged += new System.EventHandler(this.rbtnTextAlignment_CheckedChanged);
  545. //
  546. // fontDialog
  547. //
  548. this.fontDialog.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  549. this.fontDialog.ShowEffects = false;
  550. //
  551. // txtHeaderText
  552. //
  553. this.txtHeaderText.Location = new System.Drawing.Point(71, 7);
  554. this.txtHeaderText.MaxLength = 30;
  555. this.txtHeaderText.Multiline = true;
  556. this.txtHeaderText.Name = "txtHeaderText";
  557. this.txtHeaderText.Size = new System.Drawing.Size(181, 42);
  558. this.txtHeaderText.TabIndex = 1;
  559. this.txtHeaderText.FontChanged += new System.EventHandler(this.txtHeaderText_FontChanged);
  560. //
  561. // label1
  562. //
  563. this.label1.AutoSize = true;
  564. this.label1.BackColor = System.Drawing.Color.Transparent;
  565. this.label1.Location = new System.Drawing.Point(12, 10);
  566. this.label1.Name = "label1";
  567. this.label1.Size = new System.Drawing.Size(53, 12);
  568. this.label1.TabIndex = 0;
  569. this.label1.Text = "标题文本";
  570. //
  571. // chkPic
  572. //
  573. this.chkPic.AutoSize = true;
  574. this.chkPic.BackColor = System.Drawing.Color.Transparent;
  575. this.chkPic.Location = new System.Drawing.Point(156, 465);
  576. this.chkPic.Name = "chkPic";
  577. this.chkPic.Size = new System.Drawing.Size(60, 16);
  578. this.chkPic.TabIndex = 15;
  579. this.chkPic.Text = "图片列";
  580. this.chkPic.UseVisualStyleBackColor = false;
  581. this.chkPic.Visible = false;
  582. this.chkPic.CheckedChanged += new System.EventHandler(this.chkPic_CheckedChanged);
  583. //
  584. // chkM
  585. //
  586. this.chkM.AutoSize = true;
  587. this.chkM.BackColor = System.Drawing.Color.Transparent;
  588. this.chkM.Location = new System.Drawing.Point(12, 465);
  589. this.chkM.Name = "chkM";
  590. this.chkM.Size = new System.Drawing.Size(48, 16);
  591. this.chkM.TabIndex = 13;
  592. this.chkM.Text = "余白";
  593. this.chkM.UseVisualStyleBackColor = false;
  594. //
  595. // chkFixedRatio
  596. //
  597. this.chkFixedRatio.AutoSize = true;
  598. this.chkFixedRatio.BackColor = System.Drawing.Color.Transparent;
  599. this.chkFixedRatio.Location = new System.Drawing.Point(66, 465);
  600. this.chkFixedRatio.Name = "chkFixedRatio";
  601. this.chkFixedRatio.Size = new System.Drawing.Size(84, 16);
  602. this.chkFixedRatio.TabIndex = 14;
  603. this.chkFixedRatio.Text = "长宽比固定";
  604. this.chkFixedRatio.UseVisualStyleBackColor = false;
  605. //
  606. // grbHeadOption
  607. //
  608. this.grbHeadOption.BackColor = System.Drawing.Color.Transparent;
  609. this.grbHeadOption.Controls.Add(this.ckbWrapHead);
  610. this.grbHeadOption.Controls.Add(this.btnFontHead);
  611. this.grbHeadOption.Controls.Add(this.numCharCountHead);
  612. this.grbHeadOption.Controls.Add(this.numCharSpaceHead);
  613. this.grbHeadOption.Controls.Add(this.grbTextAlignmentVHead);
  614. this.grbHeadOption.Controls.Add(this.grbTextAlignmentHead);
  615. this.grbHeadOption.Controls.Add(this.numLineSpaceHead);
  616. this.grbHeadOption.Controls.Add(this.btnSelectColorHead);
  617. this.grbHeadOption.Controls.Add(this.label4);
  618. this.grbHeadOption.Controls.Add(this.label5);
  619. this.grbHeadOption.Controls.Add(this.label6);
  620. this.grbHeadOption.Controls.Add(this.label7);
  621. this.grbHeadOption.Controls.Add(this.label9);
  622. this.grbHeadOption.Location = new System.Drawing.Point(14, 54);
  623. this.grbHeadOption.Name = "grbHeadOption";
  624. this.grbHeadOption.Size = new System.Drawing.Size(413, 140);
  625. this.grbHeadOption.TabIndex = 5;
  626. this.grbHeadOption.TabStop = false;
  627. this.grbHeadOption.Text = "表头文本选项";
  628. //
  629. // ckbWrapHead
  630. //
  631. this.ckbWrapHead.AutoSize = true;
  632. this.ckbWrapHead.BackColor = System.Drawing.Color.Transparent;
  633. this.ckbWrapHead.Location = new System.Drawing.Point(109, 76);
  634. this.ckbWrapHead.Name = "ckbWrapHead";
  635. this.ckbWrapHead.Size = new System.Drawing.Size(72, 16);
  636. this.ckbWrapHead.TabIndex = 8;
  637. this.ckbWrapHead.Text = "自动换行";
  638. this.ckbWrapHead.UseVisualStyleBackColor = false;
  639. //
  640. // btnFontHead
  641. //
  642. this.btnFontHead.Location = new System.Drawing.Point(111, 108);
  643. this.btnFontHead.Name = "btnFontHead";
  644. this.btnFontHead.Size = new System.Drawing.Size(75, 23);
  645. this.btnFontHead.TabIndex = 10;
  646. this.btnFontHead.Text = "字体...";
  647. this.btnFontHead.UseVisualStyleBackColor = true;
  648. this.btnFontHead.Click += new System.EventHandler(this.btnFontHead_Click);
  649. //
  650. // numCharCountHead
  651. //
  652. this.numCharCountHead.Location = new System.Drawing.Point(18, 76);
  653. this.numCharCountHead.Maximum = new decimal(new int[] {
  654. 99,
  655. 0,
  656. 0,
  657. 0});
  658. this.numCharCountHead.Name = "numCharCountHead";
  659. this.numCharCountHead.Size = new System.Drawing.Size(53, 21);
  660. this.numCharCountHead.TabIndex = 7;
  661. this.numCharCountHead.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  662. this.numCharCountHead.ValueChanged += new System.EventHandler(this.numCharCount_ValueChanged);
  663. //
  664. // numCharSpaceHead
  665. //
  666. this.numCharSpaceHead.DecimalPlaces = 1;
  667. this.numCharSpaceHead.Increment = new decimal(new int[] {
  668. 1,
  669. 0,
  670. 0,
  671. 65536});
  672. this.numCharSpaceHead.Location = new System.Drawing.Point(18, 32);
  673. this.numCharSpaceHead.Maximum = new decimal(new int[] {
  674. 999,
  675. 0,
  676. 0,
  677. 65536});
  678. this.numCharSpaceHead.Minimum = new decimal(new int[] {
  679. 999,
  680. 0,
  681. 0,
  682. -2147418112});
  683. this.numCharSpaceHead.Name = "numCharSpaceHead";
  684. this.numCharSpaceHead.Size = new System.Drawing.Size(53, 21);
  685. this.numCharSpaceHead.TabIndex = 1;
  686. this.numCharSpaceHead.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  687. //
  688. // grbTextAlignmentVHead
  689. //
  690. this.grbTextAlignmentVHead.Controls.Add(this.rbtnBottomHead);
  691. this.grbTextAlignmentVHead.Controls.Add(this.rbtnCenterVHead);
  692. this.grbTextAlignmentVHead.Controls.Add(this.rbtnTopHead);
  693. this.grbTextAlignmentVHead.Location = new System.Drawing.Point(311, 20);
  694. this.grbTextAlignmentVHead.Name = "grbTextAlignmentVHead";
  695. this.grbTextAlignmentVHead.Size = new System.Drawing.Size(95, 111);
  696. this.grbTextAlignmentVHead.TabIndex = 12;
  697. this.grbTextAlignmentVHead.TabStop = false;
  698. this.grbTextAlignmentVHead.Text = "垂直对齐";
  699. //
  700. // rbtnBottomHead
  701. //
  702. this.rbtnBottomHead.AutoSize = true;
  703. this.rbtnBottomHead.Location = new System.Drawing.Point(10, 61);
  704. this.rbtnBottomHead.Name = "rbtnBottomHead";
  705. this.rbtnBottomHead.Size = new System.Drawing.Size(71, 16);
  706. this.rbtnBottomHead.TabIndex = 2;
  707. this.rbtnBottomHead.TabStop = true;
  708. this.rbtnBottomHead.Text = "底端对齐";
  709. this.rbtnBottomHead.UseVisualStyleBackColor = true;
  710. this.rbtnBottomHead.CheckedChanged += new System.EventHandler(this.rbtnTextAlignmentHead_CheckedChanged);
  711. //
  712. // rbtnCenterVHead
  713. //
  714. this.rbtnCenterVHead.AutoSize = true;
  715. this.rbtnCenterVHead.Location = new System.Drawing.Point(10, 39);
  716. this.rbtnCenterVHead.Name = "rbtnCenterVHead";
  717. this.rbtnCenterVHead.Size = new System.Drawing.Size(71, 16);
  718. this.rbtnCenterVHead.TabIndex = 1;
  719. this.rbtnCenterVHead.Text = "垂直居中";
  720. this.rbtnCenterVHead.UseVisualStyleBackColor = true;
  721. this.rbtnCenterVHead.CheckedChanged += new System.EventHandler(this.rbtnTextAlignmentHead_CheckedChanged);
  722. //
  723. // rbtnTopHead
  724. //
  725. this.rbtnTopHead.AutoSize = true;
  726. this.rbtnTopHead.Checked = true;
  727. this.rbtnTopHead.Location = new System.Drawing.Point(10, 17);
  728. this.rbtnTopHead.Name = "rbtnTopHead";
  729. this.rbtnTopHead.Size = new System.Drawing.Size(71, 16);
  730. this.rbtnTopHead.TabIndex = 0;
  731. this.rbtnTopHead.TabStop = true;
  732. this.rbtnTopHead.Text = "顶端对齐";
  733. this.rbtnTopHead.UseVisualStyleBackColor = true;
  734. this.rbtnTopHead.CheckedChanged += new System.EventHandler(this.rbtnTextAlignmentHead_CheckedChanged);
  735. //
  736. // grbTextAlignmentHead
  737. //
  738. this.grbTextAlignmentHead.Controls.Add(this.rbtnEvennessHead);
  739. this.grbTextAlignmentHead.Controls.Add(this.rbtnRightHead);
  740. this.grbTextAlignmentHead.Controls.Add(this.rbtnCenterHead);
  741. this.grbTextAlignmentHead.Controls.Add(this.rbtnLeftHead);
  742. this.grbTextAlignmentHead.Location = new System.Drawing.Point(210, 20);
  743. this.grbTextAlignmentHead.Name = "grbTextAlignmentHead";
  744. this.grbTextAlignmentHead.Size = new System.Drawing.Size(95, 111);
  745. this.grbTextAlignmentHead.TabIndex = 11;
  746. this.grbTextAlignmentHead.TabStop = false;
  747. this.grbTextAlignmentHead.Text = "水平对齐";
  748. //
  749. // rbtnEvennessHead
  750. //
  751. this.rbtnEvennessHead.AutoSize = true;
  752. this.rbtnEvennessHead.Location = new System.Drawing.Point(10, 83);
  753. this.rbtnEvennessHead.Name = "rbtnEvennessHead";
  754. this.rbtnEvennessHead.Size = new System.Drawing.Size(71, 16);
  755. this.rbtnEvennessHead.TabIndex = 3;
  756. this.rbtnEvennessHead.TabStop = true;
  757. this.rbtnEvennessHead.Text = "两端对齐";
  758. this.rbtnEvennessHead.UseVisualStyleBackColor = true;
  759. this.rbtnEvennessHead.CheckedChanged += new System.EventHandler(this.rbtnTextAlignmentHead_CheckedChanged);
  760. //
  761. // rbtnRightHead
  762. //
  763. this.rbtnRightHead.AutoSize = true;
  764. this.rbtnRightHead.Location = new System.Drawing.Point(10, 61);
  765. this.rbtnRightHead.Name = "rbtnRightHead";
  766. this.rbtnRightHead.Size = new System.Drawing.Size(59, 16);
  767. this.rbtnRightHead.TabIndex = 2;
  768. this.rbtnRightHead.TabStop = true;
  769. this.rbtnRightHead.Text = "右对齐";
  770. this.rbtnRightHead.UseVisualStyleBackColor = true;
  771. this.rbtnRightHead.CheckedChanged += new System.EventHandler(this.rbtnTextAlignmentHead_CheckedChanged);
  772. //
  773. // rbtnCenterHead
  774. //
  775. this.rbtnCenterHead.AutoSize = true;
  776. this.rbtnCenterHead.Location = new System.Drawing.Point(10, 39);
  777. this.rbtnCenterHead.Name = "rbtnCenterHead";
  778. this.rbtnCenterHead.Size = new System.Drawing.Size(71, 16);
  779. this.rbtnCenterHead.TabIndex = 1;
  780. this.rbtnCenterHead.Text = "居中对齐";
  781. this.rbtnCenterHead.UseVisualStyleBackColor = true;
  782. this.rbtnCenterHead.CheckedChanged += new System.EventHandler(this.rbtnTextAlignmentHead_CheckedChanged);
  783. //
  784. // rbtnLeftHead
  785. //
  786. this.rbtnLeftHead.AutoSize = true;
  787. this.rbtnLeftHead.Checked = true;
  788. this.rbtnLeftHead.Location = new System.Drawing.Point(10, 17);
  789. this.rbtnLeftHead.Name = "rbtnLeftHead";
  790. this.rbtnLeftHead.Size = new System.Drawing.Size(59, 16);
  791. this.rbtnLeftHead.TabIndex = 0;
  792. this.rbtnLeftHead.TabStop = true;
  793. this.rbtnLeftHead.Text = "左对齐";
  794. this.rbtnLeftHead.UseVisualStyleBackColor = true;
  795. this.rbtnLeftHead.CheckedChanged += new System.EventHandler(this.rbtnTextAlignmentHead_CheckedChanged);
  796. //
  797. // numLineSpaceHead
  798. //
  799. this.numLineSpaceHead.DecimalPlaces = 1;
  800. this.numLineSpaceHead.Increment = new decimal(new int[] {
  801. 1,
  802. 0,
  803. 0,
  804. 65536});
  805. this.numLineSpaceHead.Location = new System.Drawing.Point(109, 32);
  806. this.numLineSpaceHead.Maximum = new decimal(new int[] {
  807. 999,
  808. 0,
  809. 0,
  810. 65536});
  811. this.numLineSpaceHead.Minimum = new decimal(new int[] {
  812. 999,
  813. 0,
  814. 0,
  815. -2147418112});
  816. this.numLineSpaceHead.Name = "numLineSpaceHead";
  817. this.numLineSpaceHead.Size = new System.Drawing.Size(53, 21);
  818. this.numLineSpaceHead.TabIndex = 4;
  819. this.numLineSpaceHead.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  820. //
  821. // btnSelectColorHead
  822. //
  823. this.btnSelectColorHead.Location = new System.Drawing.Point(20, 108);
  824. this.btnSelectColorHead.Name = "btnSelectColorHead";
  825. this.btnSelectColorHead.Size = new System.Drawing.Size(75, 23);
  826. this.btnSelectColorHead.TabIndex = 9;
  827. this.btnSelectColorHead.Text = "颜色...";
  828. this.btnSelectColorHead.UseVisualStyleBackColor = true;
  829. this.btnSelectColorHead.Click += new System.EventHandler(this.btnSelectColorHead_Click);
  830. //
  831. // label4
  832. //
  833. this.label4.AutoSize = true;
  834. this.label4.Location = new System.Drawing.Point(75, 36);
  835. this.label4.Name = "label4";
  836. this.label4.Size = new System.Drawing.Size(17, 12);
  837. this.label4.TabIndex = 3;
  838. this.label4.Text = "mm";
  839. //
  840. // label5
  841. //
  842. this.label5.AutoSize = true;
  843. this.label5.Location = new System.Drawing.Point(165, 36);
  844. this.label5.Name = "label5";
  845. this.label5.Size = new System.Drawing.Size(17, 12);
  846. this.label5.TabIndex = 5;
  847. this.label5.Text = "mm";
  848. //
  849. // label6
  850. //
  851. this.label6.AutoSize = true;
  852. this.label6.Location = new System.Drawing.Point(16, 61);
  853. this.label6.Name = "label6";
  854. this.label6.Size = new System.Drawing.Size(65, 12);
  855. this.label6.TabIndex = 6;
  856. this.label6.Text = "单行文字数";
  857. //
  858. // label7
  859. //
  860. this.label7.AutoSize = true;
  861. this.label7.Location = new System.Drawing.Point(107, 17);
  862. this.label7.Name = "label7";
  863. this.label7.Size = new System.Drawing.Size(29, 12);
  864. this.label7.TabIndex = 2;
  865. this.label7.Text = "行距";
  866. //
  867. // label9
  868. //
  869. this.label9.AutoSize = true;
  870. this.label9.Location = new System.Drawing.Point(16, 17);
  871. this.label9.Name = "label9";
  872. this.label9.Size = new System.Drawing.Size(41, 12);
  873. this.label9.TabIndex = 0;
  874. this.label9.Text = "字间距";
  875. //
  876. // GridItemColumnSetting
  877. //
  878. this.AcceptButton = this.btnOK;
  879. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  880. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  881. this.BackColor = System.Drawing.SystemColors.Window;
  882. this.CancelButton = this.btnCancel;
  883. this.ClientSize = new System.Drawing.Size(437, 522);
  884. this.Controls.Add(this.grbHeadOption);
  885. this.Controls.Add(this.label12);
  886. this.Controls.Add(this.lblWidth);
  887. this.Controls.Add(this.txtColName);
  888. this.Controls.Add(this.lblItemName);
  889. this.Controls.Add(this.chkFixedRatio);
  890. this.Controls.Add(this.chkM);
  891. this.Controls.Add(this.chkPic);
  892. this.Controls.Add(this.txtHeaderText);
  893. this.Controls.Add(this.label1);
  894. this.Controls.Add(this.lblPreview);
  895. this.Controls.Add(this.lblDefaultValue);
  896. this.Controls.Add(this.lblTextFormat);
  897. this.Controls.Add(this.numWidth);
  898. this.Controls.Add(this.txtPreview);
  899. this.Controls.Add(this.ddlDefaultValue);
  900. this.Controls.Add(this.ddlTextFormat);
  901. this.Controls.Add(this.grbTextOption);
  902. this.Controls.Add(this.btnCancel);
  903. this.Controls.Add(this.btnOK);
  904. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  905. this.Name = "GridItemColumnSetting";
  906. this.ShowIcon = true;
  907. this.Text = "表格列设置";
  908. this.Shown += new System.EventHandler(this.TextItemSetting_Shown);
  909. this.Controls.SetChildIndex(this.pnlBack, 0);
  910. this.Controls.SetChildIndex(this.btnOK, 0);
  911. this.Controls.SetChildIndex(this.btnCancel, 0);
  912. this.Controls.SetChildIndex(this.grbTextOption, 0);
  913. this.Controls.SetChildIndex(this.ddlTextFormat, 0);
  914. this.Controls.SetChildIndex(this.ddlDefaultValue, 0);
  915. this.Controls.SetChildIndex(this.txtPreview, 0);
  916. this.Controls.SetChildIndex(this.numWidth, 0);
  917. this.Controls.SetChildIndex(this.lblTextFormat, 0);
  918. this.Controls.SetChildIndex(this.lblDefaultValue, 0);
  919. this.Controls.SetChildIndex(this.lblPreview, 0);
  920. this.Controls.SetChildIndex(this.label1, 0);
  921. this.Controls.SetChildIndex(this.txtHeaderText, 0);
  922. this.Controls.SetChildIndex(this.chkPic, 0);
  923. this.Controls.SetChildIndex(this.chkM, 0);
  924. this.Controls.SetChildIndex(this.chkFixedRatio, 0);
  925. this.Controls.SetChildIndex(this.lblItemName, 0);
  926. this.Controls.SetChildIndex(this.txtColName, 0);
  927. this.Controls.SetChildIndex(this.lblWidth, 0);
  928. this.Controls.SetChildIndex(this.label12, 0);
  929. this.Controls.SetChildIndex(this.grbHeadOption, 0);
  930. this.grbTextAlignment.ResumeLayout(false);
  931. this.grbTextAlignment.PerformLayout();
  932. ((System.ComponentModel.ISupportInitialize)(this.numLineSpace)).EndInit();
  933. ((System.ComponentModel.ISupportInitialize)(this.numCharSpace)).EndInit();
  934. ((System.ComponentModel.ISupportInitialize)(this.numWidth)).EndInit();
  935. ((System.ComponentModel.ISupportInitialize)(this.numCharCount)).EndInit();
  936. this.grbTextOption.ResumeLayout(false);
  937. this.grbTextOption.PerformLayout();
  938. this.grbTextAlignmentV.ResumeLayout(false);
  939. this.grbTextAlignmentV.PerformLayout();
  940. this.grbHeadOption.ResumeLayout(false);
  941. this.grbHeadOption.PerformLayout();
  942. ((System.ComponentModel.ISupportInitialize)(this.numCharCountHead)).EndInit();
  943. ((System.ComponentModel.ISupportInitialize)(this.numCharSpaceHead)).EndInit();
  944. this.grbTextAlignmentVHead.ResumeLayout(false);
  945. this.grbTextAlignmentVHead.PerformLayout();
  946. this.grbTextAlignmentHead.ResumeLayout(false);
  947. this.grbTextAlignmentHead.PerformLayout();
  948. ((System.ComponentModel.ISupportInitialize)(this.numLineSpaceHead)).EndInit();
  949. this.ResumeLayout(false);
  950. this.PerformLayout();
  951. }
  952. #endregion
  953. private Dongke.WinForm.Controls.BtnButton btnCancel;
  954. private Dongke.WinForm.Controls.BtnButton btnOK;
  955. private System.Windows.Forms.GroupBox grbTextAlignment;
  956. private System.Windows.Forms.Label lblLineSpace;
  957. private System.Windows.Forms.NumericUpDown numLineSpace;
  958. private System.Windows.Forms.Label label8;
  959. private System.Windows.Forms.Label lblCharSpace;
  960. private System.Windows.Forms.Label label10;
  961. private System.Windows.Forms.NumericUpDown numCharSpace;
  962. private System.Windows.Forms.Label lblWidth;
  963. private System.Windows.Forms.Label label12;
  964. private System.Windows.Forms.NumericUpDown numWidth;
  965. private System.Windows.Forms.RadioButton rbtnEvenness;
  966. private System.Windows.Forms.RadioButton rbtnRight;
  967. private System.Windows.Forms.RadioButton rbtnCenter;
  968. private System.Windows.Forms.RadioButton rbtnLeft;
  969. private System.Windows.Forms.Label lblCharCount;
  970. private System.Windows.Forms.NumericUpDown numCharCount;
  971. private System.Windows.Forms.TextBox txtPreview;
  972. private System.Windows.Forms.Label lblPreview;
  973. private System.Windows.Forms.ComboBox ddlDefaultValue;
  974. private System.Windows.Forms.ComboBox ddlTextFormat;
  975. private System.Windows.Forms.Label lblDefaultValue;
  976. private System.Windows.Forms.Label lblTextFormat;
  977. private System.Windows.Forms.Button btnSelectColor;
  978. private System.Windows.Forms.ColorDialog colorDialog;
  979. private System.Windows.Forms.Label lblItemName;
  980. private System.Windows.Forms.TextBox txtColName;
  981. private System.Windows.Forms.ToolTip toolTip;
  982. private System.Windows.Forms.GroupBox grbTextOption;
  983. private System.Windows.Forms.FontDialog fontDialog;
  984. private System.Windows.Forms.Button btnFont;
  985. private System.Windows.Forms.TextBox txtHeaderText;
  986. private System.Windows.Forms.Label label1;
  987. private System.Windows.Forms.CheckBox ckbWrap;
  988. public System.Windows.Forms.CheckBox chkPic;
  989. public System.Windows.Forms.CheckBox chkM;
  990. public System.Windows.Forms.CheckBox chkFixedRatio;
  991. private System.Windows.Forms.GroupBox grbTextAlignmentV;
  992. private System.Windows.Forms.RadioButton rbtnBottom;
  993. private System.Windows.Forms.RadioButton rbtnCenterV;
  994. private System.Windows.Forms.RadioButton rbtnTop;
  995. private System.Windows.Forms.GroupBox grbHeadOption;
  996. private System.Windows.Forms.CheckBox ckbWrapHead;
  997. private System.Windows.Forms.Button btnFontHead;
  998. private System.Windows.Forms.NumericUpDown numCharCountHead;
  999. private System.Windows.Forms.NumericUpDown numCharSpaceHead;
  1000. private System.Windows.Forms.GroupBox grbTextAlignmentVHead;
  1001. private System.Windows.Forms.RadioButton rbtnBottomHead;
  1002. private System.Windows.Forms.RadioButton rbtnCenterVHead;
  1003. private System.Windows.Forms.RadioButton rbtnTopHead;
  1004. private System.Windows.Forms.GroupBox grbTextAlignmentHead;
  1005. private System.Windows.Forms.RadioButton rbtnEvennessHead;
  1006. private System.Windows.Forms.RadioButton rbtnRightHead;
  1007. private System.Windows.Forms.RadioButton rbtnCenterHead;
  1008. private System.Windows.Forms.RadioButton rbtnLeftHead;
  1009. private System.Windows.Forms.NumericUpDown numLineSpaceHead;
  1010. private System.Windows.Forms.Button btnSelectColorHead;
  1011. private System.Windows.Forms.Label label4;
  1012. private System.Windows.Forms.Label label5;
  1013. private System.Windows.Forms.Label label6;
  1014. private System.Windows.Forms.Label label7;
  1015. private System.Windows.Forms.Label label9;
  1016. }
  1017. }