123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- 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.StatisticalInquiry
- {
- public partial class FrmStatisticalInquiryPayroll : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmStatisticalInquiryPayroll()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- this.Load += new EventHandler(FrmStatisticalInquiryPayroll_Load);
- this.txtTsorder_OpenSingle.ComboBoxTreeViewEx_TextChanged += txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged;
- this.txtTimeStart.Enter += txtTimeStart_Enter;
- this.txtTimeStart.Leave += txtTimeStart_Leave;
- this.txtTimeEnd.Enter += txtTimeEnd_Enter;
- this.txtTimeEnd.Leave += txtTimeEnd_Leave;
- this.btnSelect.Click += btnSelect_Click;
- this.btnClose.Click += btnClose_Click;
- this.btnExport1.Click += btnExport1_Click;
- this.btnExport2.Click += btnExport2_Click;
- this.btnExport3.Click += btnExport3_Click;
- this.btnExport4.Click += btnExport4_Click;
- //panelEx1.BorderStyle = BorderStyle.FixedSingle;
- //panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- //panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.dgv1.RefreshTheme();
- this.dgv2.RefreshTheme();
- this.dgv3.RefreshTheme();
- this.dgv4.RefreshTheme();
- this.Shown += FrmStatisticalInquiryPayroll_Shown;
- }
- protected virtual void FrmStatisticalInquiryPayroll_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnExport4_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnExport3_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnExport2_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnExport1_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSelect_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 txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmStatisticalInquiryPayroll_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|