1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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 FrmStatisticalInquiryAllWages : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmStatisticalInquiryAllWages()
- {
- InitializeComponent();
- //this.IsCustomScrollBar = true;
- this.Load += new EventHandler(FrmStatisticalInquiryAllWages_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;
- UcNavigationTool.LabTitle = "工资管理";
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- dgv.RefreshTheme();
- this.Shown += FrmStatisticalInquiryAllWages_Shown;
- this.btnPrint.Click += btnPrint_Click;
- }
- protected virtual void btnPrint_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmStatisticalInquiryAllWages_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 FrmStatisticalInquiryAllWages_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|