You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

374 lines
20 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class InsuranceMaintain
  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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InsuranceMaintain));
  36. this.dgvDataMaintain = new System.Windows.Forms.DataGridView();
  37. this.cDelColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  38. this.cUPDColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  39. this.cGUIDCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.cInsuranceLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.cInsuranceAmountStart = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.cInsuranceAmountEnd = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. this.cC_LaborProtection = new System.Windows.Forms.DataGridViewTextBoxColumn();
  44. this.cS_LaborProtection = new System.Windows.Forms.DataGridViewTextBoxColumn();
  45. this.cC_HealthInsuranceAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  46. this.cS_HealthInsuranceAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  47. this.cRetirementAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  48. this.tsButtons = new System.Windows.Forms.ToolStrip();
  49. this.tsbSearch = new System.Windows.Forms.ToolStripButton();
  50. this.tsbAdd = new System.Windows.Forms.ToolStripButton();
  51. this.tsbEdit = new System.Windows.Forms.ToolStripButton();
  52. this.tsbDelete = new System.Windows.Forms.ToolStripButton();
  53. this.tsbSave = new System.Windows.Forms.ToolStripButton();
  54. this.tsbOK = new System.Windows.Forms.ToolStripButton();
  55. this.tsbCancel = new System.Windows.Forms.ToolStripButton();
  56. this.tsbClean = new System.Windows.Forms.ToolStripButton();
  57. this.tsbExit = new System.Windows.Forms.ToolStripButton();
  58. ((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).BeginInit();
  59. this.tsButtons.SuspendLayout();
  60. this.SuspendLayout();
  61. //
  62. // dgvDataMaintain
  63. //
  64. this.dgvDataMaintain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  65. | System.Windows.Forms.AnchorStyles.Left)
  66. | System.Windows.Forms.AnchorStyles.Right)));
  67. this.dgvDataMaintain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  68. this.dgvDataMaintain.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  69. this.cDelColumn,
  70. this.cUPDColumn,
  71. this.cGUIDCODE,
  72. this.cInsuranceLevel,
  73. this.cInsuranceAmountStart,
  74. this.cInsuranceAmountEnd,
  75. this.cC_LaborProtection,
  76. this.cS_LaborProtection,
  77. this.cC_HealthInsuranceAmount,
  78. this.cS_HealthInsuranceAmount,
  79. this.cRetirementAmount});
  80. this.dgvDataMaintain.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
  81. this.dgvDataMaintain.Location = new System.Drawing.Point(20, 37);
  82. this.dgvDataMaintain.Margin = new System.Windows.Forms.Padding(5);
  83. this.dgvDataMaintain.Name = "dgvDataMaintain";
  84. this.dgvDataMaintain.ReadOnly = true;
  85. this.dgvDataMaintain.RowTemplate.Height = 24;
  86. this.dgvDataMaintain.Size = new System.Drawing.Size(1893, 813);
  87. this.dgvDataMaintain.TabIndex = 0;
  88. this.dgvDataMaintain.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_CellClick);
  89. this.dgvDataMaintain.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_CellEnter);
  90. this.dgvDataMaintain.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_CellValueChanged);
  91. //
  92. // cDelColumn
  93. //
  94. this.cDelColumn.FalseValue = "N";
  95. this.cDelColumn.HeaderText = "刪除";
  96. this.cDelColumn.Name = "cDelColumn";
  97. this.cDelColumn.ReadOnly = true;
  98. this.cDelColumn.TrueValue = "Y";
  99. this.cDelColumn.Width = 50;
  100. //
  101. // cUPDColumn
  102. //
  103. this.cUPDColumn.FalseValue = "N";
  104. this.cUPDColumn.HeaderText = "修改";
  105. this.cUPDColumn.Name = "cUPDColumn";
  106. this.cUPDColumn.ReadOnly = true;
  107. this.cUPDColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  108. this.cUPDColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  109. this.cUPDColumn.TrueValue = "Y";
  110. this.cUPDColumn.Visible = false;
  111. this.cUPDColumn.Width = 60;
  112. //
  113. // cGUIDCODE
  114. //
  115. this.cGUIDCODE.DataPropertyName = "GUIDCode";
  116. this.cGUIDCODE.HeaderText = "主鍵值";
  117. this.cGUIDCODE.Name = "cGUIDCODE";
  118. this.cGUIDCODE.ReadOnly = true;
  119. this.cGUIDCODE.Visible = false;
  120. this.cGUIDCODE.Width = 50;
  121. //
  122. // cInsuranceLevel
  123. //
  124. this.cInsuranceLevel.DataPropertyName = "InsuranceLevel";
  125. this.cInsuranceLevel.HeaderText = "級數";
  126. this.cInsuranceLevel.Name = "cInsuranceLevel";
  127. this.cInsuranceLevel.ReadOnly = true;
  128. //
  129. // cInsuranceAmountStart
  130. //
  131. this.cInsuranceAmountStart.DataPropertyName = "InsuranceAmountStart";
  132. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  133. dataGridViewCellStyle1.Format = "N0";
  134. dataGridViewCellStyle1.NullValue = null;
  135. this.cInsuranceAmountStart.DefaultCellStyle = dataGridViewCellStyle1;
  136. this.cInsuranceAmountStart.HeaderText = "投保金額起始級距";
  137. this.cInsuranceAmountStart.Name = "cInsuranceAmountStart";
  138. this.cInsuranceAmountStart.ReadOnly = true;
  139. this.cInsuranceAmountStart.Width = 200;
  140. //
  141. // cInsuranceAmountEnd
  142. //
  143. this.cInsuranceAmountEnd.DataPropertyName = "InsuranceAmountEnd";
  144. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  145. dataGridViewCellStyle2.Format = "N0";
  146. dataGridViewCellStyle2.NullValue = null;
  147. this.cInsuranceAmountEnd.DefaultCellStyle = dataGridViewCellStyle2;
  148. this.cInsuranceAmountEnd.HeaderText = "投保金額結束級距";
  149. this.cInsuranceAmountEnd.Name = "cInsuranceAmountEnd";
  150. this.cInsuranceAmountEnd.ReadOnly = true;
  151. this.cInsuranceAmountEnd.Width = 200;
  152. //
  153. // cC_LaborProtection
  154. //
  155. this.cC_LaborProtection.DataPropertyName = "C_LaborProtection";
  156. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  157. dataGridViewCellStyle3.Format = "N0";
  158. dataGridViewCellStyle3.NullValue = null;
  159. this.cC_LaborProtection.DefaultCellStyle = dataGridViewCellStyle3;
  160. this.cC_LaborProtection.HeaderText = "公司提列勞保金額";
  161. this.cC_LaborProtection.Name = "cC_LaborProtection";
  162. this.cC_LaborProtection.ReadOnly = true;
  163. this.cC_LaborProtection.Width = 200;
  164. //
  165. // cS_LaborProtection
  166. //
  167. this.cS_LaborProtection.DataPropertyName = "S_LaborProtection";
  168. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  169. dataGridViewCellStyle4.Format = "N0";
  170. dataGridViewCellStyle4.NullValue = null;
  171. this.cS_LaborProtection.DefaultCellStyle = dataGridViewCellStyle4;
  172. this.cS_LaborProtection.HeaderText = "自提勞保金額";
  173. this.cS_LaborProtection.Name = "cS_LaborProtection";
  174. this.cS_LaborProtection.ReadOnly = true;
  175. this.cS_LaborProtection.Width = 200;
  176. //
  177. // cC_HealthInsuranceAmount
  178. //
  179. this.cC_HealthInsuranceAmount.DataPropertyName = "C_HealthInsuranceAmount";
  180. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  181. dataGridViewCellStyle5.Format = "N0";
  182. dataGridViewCellStyle5.NullValue = null;
  183. this.cC_HealthInsuranceAmount.DefaultCellStyle = dataGridViewCellStyle5;
  184. this.cC_HealthInsuranceAmount.HeaderText = "公司提列健保金額";
  185. this.cC_HealthInsuranceAmount.Name = "cC_HealthInsuranceAmount";
  186. this.cC_HealthInsuranceAmount.ReadOnly = true;
  187. this.cC_HealthInsuranceAmount.Width = 200;
  188. //
  189. // cS_HealthInsuranceAmount
  190. //
  191. this.cS_HealthInsuranceAmount.DataPropertyName = "S_HealthInsuranceAmount";
  192. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  193. dataGridViewCellStyle6.Format = "N0";
  194. dataGridViewCellStyle6.NullValue = null;
  195. this.cS_HealthInsuranceAmount.DefaultCellStyle = dataGridViewCellStyle6;
  196. this.cS_HealthInsuranceAmount.HeaderText = "自提健保金額";
  197. this.cS_HealthInsuranceAmount.Name = "cS_HealthInsuranceAmount";
  198. this.cS_HealthInsuranceAmount.ReadOnly = true;
  199. this.cS_HealthInsuranceAmount.Width = 200;
  200. //
  201. // cRetirementAmount
  202. //
  203. this.cRetirementAmount.DataPropertyName = "RetirementAmount";
  204. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  205. dataGridViewCellStyle7.Format = "N0";
  206. dataGridViewCellStyle7.NullValue = null;
  207. this.cRetirementAmount.DefaultCellStyle = dataGridViewCellStyle7;
  208. this.cRetirementAmount.HeaderText = "公提勞退金";
  209. this.cRetirementAmount.Name = "cRetirementAmount";
  210. this.cRetirementAmount.ReadOnly = true;
  211. this.cRetirementAmount.Width = 200;
  212. //
  213. // tsButtons
  214. //
  215. this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
  216. this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  217. this.tsbSearch,
  218. this.tsbAdd,
  219. this.tsbEdit,
  220. this.tsbDelete,
  221. this.tsbSave,
  222. this.tsbOK,
  223. this.tsbCancel,
  224. this.tsbClean,
  225. this.tsbExit});
  226. this.tsButtons.Location = new System.Drawing.Point(0, 0);
  227. this.tsButtons.Name = "tsButtons";
  228. this.tsButtons.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
  229. this.tsButtons.Size = new System.Drawing.Size(1916, 32);
  230. this.tsButtons.TabIndex = 5;
  231. this.tsButtons.Text = "功能按鈕表";
  232. //
  233. // tsbSearch
  234. //
  235. this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  236. this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
  237. this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
  238. this.tsbSearch.Name = "tsbSearch";
  239. this.tsbSearch.Size = new System.Drawing.Size(29, 29);
  240. this.tsbSearch.Text = "搜尋";
  241. this.tsbSearch.Visible = false;
  242. this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
  243. //
  244. // tsbAdd
  245. //
  246. this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  247. this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
  248. this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
  249. this.tsbAdd.Name = "tsbAdd";
  250. this.tsbAdd.Size = new System.Drawing.Size(29, 29);
  251. this.tsbAdd.Text = "新增";
  252. this.tsbAdd.Click += new System.EventHandler(this.tsbAdd_Click);
  253. //
  254. // tsbEdit
  255. //
  256. this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  257. this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
  258. this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  259. this.tsbEdit.Name = "tsbEdit";
  260. this.tsbEdit.Size = new System.Drawing.Size(29, 29);
  261. this.tsbEdit.Text = "修改";
  262. this.tsbEdit.Click += new System.EventHandler(this.tsbEdit_Click);
  263. //
  264. // tsbDelete
  265. //
  266. this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  267. this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
  268. this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
  269. this.tsbDelete.Name = "tsbDelete";
  270. this.tsbDelete.Size = new System.Drawing.Size(29, 29);
  271. this.tsbDelete.Text = "刪除";
  272. this.tsbDelete.Click += new System.EventHandler(this.tsbDelete_Click);
  273. //
  274. // tsbSave
  275. //
  276. this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  277. this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
  278. this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
  279. this.tsbSave.Name = "tsbSave";
  280. this.tsbSave.Size = new System.Drawing.Size(29, 29);
  281. this.tsbSave.Text = "儲存";
  282. this.tsbSave.Visible = false;
  283. this.tsbSave.Click += new System.EventHandler(this.tsbSave_Click);
  284. //
  285. // tsbOK
  286. //
  287. this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  288. this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
  289. this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
  290. this.tsbOK.Name = "tsbOK";
  291. this.tsbOK.Size = new System.Drawing.Size(29, 29);
  292. this.tsbOK.Text = "確認";
  293. this.tsbOK.Visible = false;
  294. this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
  295. //
  296. // tsbCancel
  297. //
  298. this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  299. this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
  300. this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
  301. this.tsbCancel.Name = "tsbCancel";
  302. this.tsbCancel.Size = new System.Drawing.Size(29, 29);
  303. this.tsbCancel.Text = "取消";
  304. this.tsbCancel.Visible = false;
  305. this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
  306. //
  307. // tsbClean
  308. //
  309. this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  310. this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
  311. this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
  312. this.tsbClean.Name = "tsbClean";
  313. this.tsbClean.Size = new System.Drawing.Size(29, 29);
  314. this.tsbClean.Text = "清除";
  315. this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
  316. //
  317. // tsbExit
  318. //
  319. this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  320. this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
  321. this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
  322. this.tsbExit.Name = "tsbExit";
  323. this.tsbExit.Size = new System.Drawing.Size(29, 29);
  324. this.tsbExit.Text = "離開";
  325. this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
  326. //
  327. // InsuranceMaintain
  328. //
  329. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  330. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  331. this.ClientSize = new System.Drawing.Size(1916, 870);
  332. this.Controls.Add(this.tsButtons);
  333. this.Controls.Add(this.dgvDataMaintain);
  334. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  335. this.Margin = new System.Windows.Forms.Padding(5);
  336. this.Name = "InsuranceMaintain";
  337. this.Text = "勞、健保級距資料維護";
  338. this.Load += new System.EventHandler(this.InsuranceMaintain_Load);
  339. ((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).EndInit();
  340. this.tsButtons.ResumeLayout(false);
  341. this.tsButtons.PerformLayout();
  342. this.ResumeLayout(false);
  343. this.PerformLayout();
  344. }
  345. #endregion
  346. private System.Windows.Forms.DataGridView dgvDataMaintain;
  347. private System.Windows.Forms.ToolStrip tsButtons;
  348. private System.Windows.Forms.ToolStripButton tsbSearch;
  349. private System.Windows.Forms.ToolStripButton tsbAdd;
  350. private System.Windows.Forms.ToolStripButton tsbEdit;
  351. private System.Windows.Forms.ToolStripButton tsbDelete;
  352. private System.Windows.Forms.ToolStripButton tsbSave;
  353. private System.Windows.Forms.ToolStripButton tsbOK;
  354. private System.Windows.Forms.ToolStripButton tsbCancel;
  355. private System.Windows.Forms.ToolStripButton tsbExit;
  356. private System.Windows.Forms.ToolStripButton tsbClean;
  357. private System.Windows.Forms.DataGridViewCheckBoxColumn cDelColumn;
  358. private System.Windows.Forms.DataGridViewCheckBoxColumn cUPDColumn;
  359. private System.Windows.Forms.DataGridViewTextBoxColumn cGUIDCODE;
  360. private System.Windows.Forms.DataGridViewTextBoxColumn cInsuranceLevel;
  361. private System.Windows.Forms.DataGridViewTextBoxColumn cInsuranceAmountStart;
  362. private System.Windows.Forms.DataGridViewTextBoxColumn cInsuranceAmountEnd;
  363. private System.Windows.Forms.DataGridViewTextBoxColumn cC_LaborProtection;
  364. private System.Windows.Forms.DataGridViewTextBoxColumn cS_LaborProtection;
  365. private System.Windows.Forms.DataGridViewTextBoxColumn cC_HealthInsuranceAmount;
  366. private System.Windows.Forms.DataGridViewTextBoxColumn cS_HealthInsuranceAmount;
  367. private System.Windows.Forms.DataGridViewTextBoxColumn cRetirementAmount;
  368. }
  369. }