123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- using LYFZ.ComponentLibrary;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI.FinancialManagement.Payroll
- {
- public partial class FrmAllWages : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmAllWages()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- this.Load += FrmAllWages_Load;
- this.btnSelect.Click += btnSelect_Click;
- this.txtTimeStart.Enter += txtTimeStart_Enter;
- this.txtTimeStart.Leave += txtTimeStart_Leave;
- this.txtTimeEnd.Enter += txtTimeEnd_Enter;
- this.txtTimeEnd.Leave += txtTimeEnd_Leave;
- this.btnViewDetails.Click += btnViewDetails_Click;
- this.btnClose.Click += btnClose_Click;
- this.btnExport.Click += btnExport_Click;
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- dgv.RefreshTheme();
- this.Shown += FrmAllWages_Shown;
- lblPrice.Visible = false;
- }
- protected virtual void FrmAllWages_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnExport_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnViewDetails_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtTimeEnd_Leave(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtTimeEnd_Enter(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtTimeStart_Leave(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtTimeStart_Enter(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSelect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmAllWages_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|