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.

431 lines
20 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class DayOffEstimate
  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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DayOffEstimate));
  29. this.tsButtons = new System.Windows.Forms.ToolStrip();
  30. this.tsbSearch = new System.Windows.Forms.ToolStripButton();
  31. this.tsbAdd = new System.Windows.Forms.ToolStripButton();
  32. this.tsbEdit = new System.Windows.Forms.ToolStripButton();
  33. this.tsbDelete = new System.Windows.Forms.ToolStripButton();
  34. this.tsbSave = new System.Windows.Forms.ToolStripButton();
  35. this.tsbOK = new System.Windows.Forms.ToolStripButton();
  36. this.tsbCancel = new System.Windows.Forms.ToolStripButton();
  37. this.tsbClean = new System.Windows.Forms.ToolStripButton();
  38. this.tsbExit = new System.Windows.Forms.ToolStripButton();
  39. this.dgvDayOffList = new System.Windows.Forms.DataGridView();
  40. this.label1 = new System.Windows.Forms.Label();
  41. this.cbYear = new System.Windows.Forms.ComboBox();
  42. this.label2 = new System.Windows.Forms.Label();
  43. this.cbMonth = new System.Windows.Forms.ComboBox();
  44. this.tsbSetup = new System.Windows.Forms.ToolStripButton();
  45. this.btnSalary = new System.Windows.Forms.Button();
  46. this.cMemberName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  47. this.cMemberID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  48. this.cSID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  49. this.cAnnual = new System.Windows.Forms.DataGridViewTextBoxColumn();
  50. this.cBusiness = new System.Windows.Forms.DataGridViewTextBoxColumn();
  51. this.cSick = new System.Windows.Forms.DataGridViewTextBoxColumn();
  52. this.cFuneral = new System.Windows.Forms.DataGridViewTextBoxColumn();
  53. this.cPersonal = new System.Windows.Forms.DataGridViewTextBoxColumn();
  54. this.cMarriage = new System.Windows.Forms.DataGridViewTextBoxColumn();
  55. this.cMaternity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  56. this.cPaternity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  57. this.cParental = new System.Windows.Forms.DataGridViewTextBoxColumn();
  58. this.cInjury = new System.Windows.Forms.DataGridViewTextBoxColumn();
  59. this.cCompensatory = new System.Windows.Forms.DataGridViewTextBoxColumn();
  60. this.cLeaveWithoutPay = new System.Windows.Forms.DataGridViewTextBoxColumn();
  61. this.cSalary = new System.Windows.Forms.DataGridViewTextBoxColumn();
  62. this.tsButtons.SuspendLayout();
  63. ((System.ComponentModel.ISupportInitialize)(this.dgvDayOffList)).BeginInit();
  64. this.SuspendLayout();
  65. //
  66. // tsButtons
  67. //
  68. this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
  69. this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  70. this.tsbSearch,
  71. this.tsbAdd,
  72. this.tsbEdit,
  73. this.tsbDelete,
  74. this.tsbSave,
  75. this.tsbOK,
  76. this.tsbCancel,
  77. this.tsbClean,
  78. this.tsbExit,
  79. this.tsbSetup});
  80. this.tsButtons.Location = new System.Drawing.Point(0, 0);
  81. this.tsButtons.Name = "tsButtons";
  82. this.tsButtons.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
  83. this.tsButtons.Size = new System.Drawing.Size(1339, 32);
  84. this.tsButtons.TabIndex = 7;
  85. this.tsButtons.Text = "功能按鈕表";
  86. //
  87. // tsbSearch
  88. //
  89. this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  90. this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
  91. this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
  92. this.tsbSearch.Name = "tsbSearch";
  93. this.tsbSearch.Size = new System.Drawing.Size(29, 29);
  94. this.tsbSearch.Text = "搜尋";
  95. this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
  96. //
  97. // tsbAdd
  98. //
  99. this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  100. this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
  101. this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
  102. this.tsbAdd.Name = "tsbAdd";
  103. this.tsbAdd.Size = new System.Drawing.Size(29, 29);
  104. this.tsbAdd.Text = "新增";
  105. this.tsbAdd.Visible = false;
  106. //
  107. // tsbEdit
  108. //
  109. this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  110. this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
  111. this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  112. this.tsbEdit.Name = "tsbEdit";
  113. this.tsbEdit.Size = new System.Drawing.Size(29, 29);
  114. this.tsbEdit.Text = "修改";
  115. this.tsbEdit.Visible = false;
  116. //
  117. // tsbDelete
  118. //
  119. this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  120. this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
  121. this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
  122. this.tsbDelete.Name = "tsbDelete";
  123. this.tsbDelete.Size = new System.Drawing.Size(29, 29);
  124. this.tsbDelete.Text = "刪除";
  125. this.tsbDelete.Visible = false;
  126. //
  127. // tsbSave
  128. //
  129. this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  130. this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
  131. this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
  132. this.tsbSave.Name = "tsbSave";
  133. this.tsbSave.Size = new System.Drawing.Size(29, 29);
  134. this.tsbSave.Text = "儲存";
  135. this.tsbSave.Visible = false;
  136. //
  137. // tsbOK
  138. //
  139. this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  140. this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
  141. this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
  142. this.tsbOK.Name = "tsbOK";
  143. this.tsbOK.Size = new System.Drawing.Size(29, 29);
  144. this.tsbOK.Text = "確認";
  145. this.tsbOK.Visible = false;
  146. this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
  147. //
  148. // tsbCancel
  149. //
  150. this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  151. this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
  152. this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
  153. this.tsbCancel.Name = "tsbCancel";
  154. this.tsbCancel.Size = new System.Drawing.Size(29, 29);
  155. this.tsbCancel.Text = "取消";
  156. this.tsbCancel.Visible = false;
  157. this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
  158. //
  159. // tsbClean
  160. //
  161. this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  162. this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
  163. this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
  164. this.tsbClean.Name = "tsbClean";
  165. this.tsbClean.Size = new System.Drawing.Size(29, 29);
  166. this.tsbClean.Text = "清除";
  167. this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
  168. //
  169. // tsbExit
  170. //
  171. this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  172. this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
  173. this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
  174. this.tsbExit.Name = "tsbExit";
  175. this.tsbExit.Size = new System.Drawing.Size(29, 29);
  176. this.tsbExit.Text = "離開";
  177. this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
  178. //
  179. // dgvDayOffList
  180. //
  181. this.dgvDayOffList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  182. | System.Windows.Forms.AnchorStyles.Left)
  183. | System.Windows.Forms.AnchorStyles.Right)));
  184. this.dgvDayOffList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  185. this.dgvDayOffList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  186. this.cMemberName,
  187. this.cMemberID,
  188. this.cSID,
  189. this.cAnnual,
  190. this.cBusiness,
  191. this.cSick,
  192. this.cFuneral,
  193. this.cPersonal,
  194. this.cMarriage,
  195. this.cMaternity,
  196. this.cPaternity,
  197. this.cParental,
  198. this.cInjury,
  199. this.cCompensatory,
  200. this.cLeaveWithoutPay,
  201. this.cSalary});
  202. this.dgvDayOffList.Location = new System.Drawing.Point(12, 72);
  203. this.dgvDayOffList.Name = "dgvDayOffList";
  204. this.dgvDayOffList.RowTemplate.Height = 24;
  205. this.dgvDayOffList.Size = new System.Drawing.Size(1315, 558);
  206. this.dgvDayOffList.TabIndex = 8;
  207. //
  208. // label1
  209. //
  210. this.label1.AutoSize = true;
  211. this.label1.Location = new System.Drawing.Point(12, 41);
  212. this.label1.Name = "label1";
  213. this.label1.Size = new System.Drawing.Size(89, 20);
  214. this.label1.TabIndex = 9;
  215. this.label1.Text = "統計年份:";
  216. //
  217. // cbYear
  218. //
  219. this.cbYear.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  220. this.cbYear.FormattingEnabled = true;
  221. this.cbYear.Location = new System.Drawing.Point(109, 37);
  222. this.cbYear.Margin = new System.Windows.Forms.Padding(5);
  223. this.cbYear.Name = "cbYear";
  224. this.cbYear.Size = new System.Drawing.Size(103, 28);
  225. this.cbYear.TabIndex = 13;
  226. //
  227. // label2
  228. //
  229. this.label2.AutoSize = true;
  230. this.label2.Location = new System.Drawing.Point(256, 41);
  231. this.label2.Name = "label2";
  232. this.label2.Size = new System.Drawing.Size(89, 20);
  233. this.label2.TabIndex = 14;
  234. this.label2.Text = "統計月份:";
  235. //
  236. // cbMonth
  237. //
  238. this.cbMonth.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  239. this.cbMonth.FormattingEnabled = true;
  240. this.cbMonth.Items.AddRange(new object[] {
  241. "1",
  242. "2",
  243. "3",
  244. "4",
  245. "5",
  246. "6",
  247. "7",
  248. "8",
  249. "9",
  250. "10",
  251. "11",
  252. "12"});
  253. this.cbMonth.Location = new System.Drawing.Point(344, 38);
  254. this.cbMonth.Margin = new System.Windows.Forms.Padding(5);
  255. this.cbMonth.Name = "cbMonth";
  256. this.cbMonth.Size = new System.Drawing.Size(103, 28);
  257. this.cbMonth.TabIndex = 15;
  258. //
  259. // tsbSetup
  260. //
  261. this.tsbSetup.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  262. this.tsbSetup.Image = ((System.Drawing.Image)(resources.GetObject("tsbSetup.Image")));
  263. this.tsbSetup.ImageTransparentColor = System.Drawing.Color.Magenta;
  264. this.tsbSetup.Name = "tsbSetup";
  265. this.tsbSetup.Size = new System.Drawing.Size(29, 29);
  266. this.tsbSetup.Text = "分錄設定";
  267. //
  268. // btnSalary
  269. //
  270. this.btnSalary.Location = new System.Drawing.Point(496, 38);
  271. this.btnSalary.Name = "btnSalary";
  272. this.btnSalary.Size = new System.Drawing.Size(128, 28);
  273. this.btnSalary.TabIndex = 16;
  274. this.btnSalary.Text = "產生薪資分錄";
  275. this.btnSalary.UseVisualStyleBackColor = true;
  276. //
  277. // cMemberName
  278. //
  279. this.cMemberName.HeaderText = "人員姓名";
  280. this.cMemberName.Name = "cMemberName";
  281. //
  282. // cMemberID
  283. //
  284. this.cMemberID.HeaderText = "人員帳號";
  285. this.cMemberID.Name = "cMemberID";
  286. this.cMemberID.Width = 150;
  287. //
  288. // cSID
  289. //
  290. this.cSID.HeaderText = "身份證字號";
  291. this.cSID.Name = "cSID";
  292. this.cSID.Width = 150;
  293. //
  294. // cAnnual
  295. //
  296. this.cAnnual.HeaderText = "年假";
  297. this.cAnnual.Name = "cAnnual";
  298. this.cAnnual.Width = 80;
  299. //
  300. // cBusiness
  301. //
  302. this.cBusiness.HeaderText = "公假";
  303. this.cBusiness.Name = "cBusiness";
  304. this.cBusiness.Width = 80;
  305. //
  306. // cSick
  307. //
  308. this.cSick.HeaderText = "病假";
  309. this.cSick.Name = "cSick";
  310. this.cSick.Width = 80;
  311. //
  312. // cFuneral
  313. //
  314. this.cFuneral.HeaderText = "喪假";
  315. this.cFuneral.Name = "cFuneral";
  316. this.cFuneral.Width = 80;
  317. //
  318. // cPersonal
  319. //
  320. this.cPersonal.HeaderText = "事假";
  321. this.cPersonal.Name = "cPersonal";
  322. this.cPersonal.Width = 80;
  323. //
  324. // cMarriage
  325. //
  326. this.cMarriage.HeaderText = "婚假";
  327. this.cMarriage.Name = "cMarriage";
  328. this.cMarriage.Width = 80;
  329. //
  330. // cMaternity
  331. //
  332. this.cMaternity.HeaderText = "產假";
  333. this.cMaternity.Name = "cMaternity";
  334. this.cMaternity.Width = 80;
  335. //
  336. // cPaternity
  337. //
  338. this.cPaternity.HeaderText = "陪產假";
  339. this.cPaternity.Name = "cPaternity";
  340. //
  341. // cParental
  342. //
  343. this.cParental.HeaderText = "育嬰假";
  344. this.cParental.Name = "cParental";
  345. //
  346. // cInjury
  347. //
  348. this.cInjury.HeaderText = "傷假";
  349. this.cInjury.Name = "cInjury";
  350. this.cInjury.Width = 80;
  351. //
  352. // cCompensatory
  353. //
  354. this.cCompensatory.HeaderText = "補休";
  355. this.cCompensatory.Name = "cCompensatory";
  356. this.cCompensatory.Width = 80;
  357. //
  358. // cLeaveWithoutPay
  359. //
  360. this.cLeaveWithoutPay.HeaderText = "留職停薪";
  361. this.cLeaveWithoutPay.Name = "cLeaveWithoutPay";
  362. //
  363. // cSalary
  364. //
  365. this.cSalary.HeaderText = "薪資合計";
  366. this.cSalary.Name = "cSalary";
  367. //
  368. // DayOffEstimate
  369. //
  370. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  371. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  372. this.ClientSize = new System.Drawing.Size(1339, 642);
  373. this.Controls.Add(this.btnSalary);
  374. this.Controls.Add(this.cbMonth);
  375. this.Controls.Add(this.label2);
  376. this.Controls.Add(this.cbYear);
  377. this.Controls.Add(this.label1);
  378. this.Controls.Add(this.dgvDayOffList);
  379. this.Controls.Add(this.tsButtons);
  380. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  381. this.Margin = new System.Windows.Forms.Padding(5);
  382. this.Name = "DayOffEstimate";
  383. this.Text = "薪資估算表";
  384. this.Load += new System.EventHandler(this.DayOffEstimate_Load);
  385. this.tsButtons.ResumeLayout(false);
  386. this.tsButtons.PerformLayout();
  387. ((System.ComponentModel.ISupportInitialize)(this.dgvDayOffList)).EndInit();
  388. this.ResumeLayout(false);
  389. this.PerformLayout();
  390. }
  391. #endregion
  392. private System.Windows.Forms.ToolStrip tsButtons;
  393. private System.Windows.Forms.ToolStripButton tsbSearch;
  394. private System.Windows.Forms.ToolStripButton tsbAdd;
  395. private System.Windows.Forms.ToolStripButton tsbEdit;
  396. private System.Windows.Forms.ToolStripButton tsbDelete;
  397. private System.Windows.Forms.ToolStripButton tsbSave;
  398. private System.Windows.Forms.ToolStripButton tsbOK;
  399. private System.Windows.Forms.ToolStripButton tsbCancel;
  400. private System.Windows.Forms.ToolStripButton tsbClean;
  401. private System.Windows.Forms.ToolStripButton tsbExit;
  402. private System.Windows.Forms.DataGridView dgvDayOffList;
  403. private System.Windows.Forms.Label label1;
  404. private System.Windows.Forms.ComboBox cbYear;
  405. private System.Windows.Forms.Label label2;
  406. private System.Windows.Forms.ComboBox cbMonth;
  407. private System.Windows.Forms.ToolStripButton tsbSetup;
  408. private System.Windows.Forms.Button btnSalary;
  409. private System.Windows.Forms.DataGridViewTextBoxColumn cMemberName;
  410. private System.Windows.Forms.DataGridViewTextBoxColumn cMemberID;
  411. private System.Windows.Forms.DataGridViewTextBoxColumn cSID;
  412. private System.Windows.Forms.DataGridViewTextBoxColumn cAnnual;
  413. private System.Windows.Forms.DataGridViewTextBoxColumn cBusiness;
  414. private System.Windows.Forms.DataGridViewTextBoxColumn cSick;
  415. private System.Windows.Forms.DataGridViewTextBoxColumn cFuneral;
  416. private System.Windows.Forms.DataGridViewTextBoxColumn cPersonal;
  417. private System.Windows.Forms.DataGridViewTextBoxColumn cMarriage;
  418. private System.Windows.Forms.DataGridViewTextBoxColumn cMaternity;
  419. private System.Windows.Forms.DataGridViewTextBoxColumn cPaternity;
  420. private System.Windows.Forms.DataGridViewTextBoxColumn cParental;
  421. private System.Windows.Forms.DataGridViewTextBoxColumn cInjury;
  422. private System.Windows.Forms.DataGridViewTextBoxColumn cCompensatory;
  423. private System.Windows.Forms.DataGridViewTextBoxColumn cLeaveWithoutPay;
  424. private System.Windows.Forms.DataGridViewTextBoxColumn cSalary;
  425. }
  426. }