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.Customers { public partial class FrmOrdersCustomer : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmOrdersCustomer() { InitializeComponent(); this.IsCustomScrollBar = true; this.Load += new EventHandler(FrmOrdersCustomer_Load); this.btnSlect.Click += new EventHandler(btnSlect_Click); this.btnExport.Click += new EventHandler(btnExport_Click); this.btnClose.Click += new EventHandler(btnClose_Click); panelEx2.BorderStyle = BorderStyle.FixedSingle; panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor; // panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor; UcNavigationTool.LabTitle = "订单客户"; this.Shown += FrmOrdersCustomer_Shown; this.btnUpdate.Click += btnUpdate_Click; this.chkEt.Click += chkEt_Click; this.chkFw.Click += chkFw_Click; this.chkHs.Click += chkHs_Click; this.chkXz.Click += chkXz_Click; } protected virtual void chkXz_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void chkHs_Click(object sender, EventArgs e) { // throw new NotImplementedException(); } protected virtual void chkFw_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void chkEt_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnUpdate_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void FrmOrdersCustomer_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void pagerEx1_EventPaging(EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnClose_Click(object sender, EventArgs e) { } protected virtual void btnExport_Click(object sender, EventArgs e) { } protected virtual void btnSlect_Click(object sender, EventArgs e) { } protected virtual void FrmOrdersCustomer_Load(object sender, EventArgs e) { } private void panelEx2_Paint(object sender, PaintEventArgs e) { } } }