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 FrmOldCustomerRecordBaby : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmOldCustomerRecordBaby() { InitializeComponent(); this.IsCustomScrollBar = true; this.Load += new EventHandler(FrmOldCustomerRecordBaby_Load); this.dgv2.Click += new EventHandler(dgv2_Click); this.btnClose.Click += new EventHandler(btnClose_Click); this.btnUpdate.Click += new EventHandler(btnUpdate_Click); panelEx1.BorderStyle = BorderStyle.FixedSingle; panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; panelEx8.BackColor = UIBlueThemeResources.BorderAreaColor; this.dgv2.RefreshTheme(); this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress; this.txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress; } protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } protected virtual void btnUpdate_Click(object sender, EventArgs e) { } protected virtual void btnClose_Click(object sender, EventArgs e) { } protected virtual void dgv2_Click(object sender, EventArgs e) { } protected virtual void FrmOldCustomerRecordBaby_Load(object sender, EventArgs e) { } private void panelEx1_Paint(object sender, PaintEventArgs e) { } } }