1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- 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 FrmCosting : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmCosting()
- {
- InitializeComponent();
-
- this.Load += new EventHandler(FrmCosting_Load);
- this.txtTsorder_OpenSingle.ComboBoxTreeViewEx_TextChanged += new ComponentLibrary.ComboBoxTreeViewEx.ComboBoxTreeView_TextChanged(txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged);
- this.btnSelect.Click += new EventHandler(btnSelect_Click);
- this.dgv.CellClick += new DataGridViewCellEventHandler(dgv_CellClick);
- this.btnExPort.Click += new EventHandler(btnExPort_Click);
- this.btnClose.Click += new EventHandler(btnClose_Click);
- UcNavigationTool.LabTitle = "成本核算";
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- dgv.RefreshTheme();
- this.Shown += FrmCosting_Shown;
- txtTimeStart.Leave += txtTimeStart_Leave;
- txtTimeEnd.Leave += txtTimeEnd_Leave;
- txtTimeStart.Enter += txtTimeStart_Enter;
- txtTimeEnd.Enter += txtTimeEnd_Enter;
-
- }
- protected virtual void txtTimeEnd_Enter(object sender, EventArgs e)
- {
-
- }
- protected virtual void txtTimeStart_Enter(object sender, EventArgs e)
- {
-
- }
- protected virtual void txtTimeEnd_Leave(object sender, EventArgs e)
- {
-
- }
- protected virtual void txtTimeStart_Leave(object sender, EventArgs e)
- {
-
- }
- protected virtual void FrmCosting_Shown(object sender, EventArgs e)
- {
-
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
-
- }
- protected virtual void btnExPort_Click(object sender, EventArgs e)
- {
-
- }
-
- protected virtual void dgv_CellClick(object sender, DataGridViewCellEventArgs e)
- {
-
- }
- protected virtual void btnSelect_Click(object sender, EventArgs e)
- {
-
- }
- protected virtual void txtTsorder_OpenSingle_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
- {
-
- }
- protected virtual void FrmCosting_Load(object sender, EventArgs e)
- {
- }
- }
- }
|