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.OldCustomer { public partial class FrmOldCustomerPortraitEdit : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmOldCustomerPortraitEdit() { InitializeComponent(); this.btnClose.Click += new EventHandler(btnClose_Click); this.txtCus_Telephone.KeyPress += new KeyPressEventHandler(txtCus_Telephone_KeyPress); panelEx1.BorderStyle = BorderStyle.FixedSingle; panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; panelEx2.BorderStyle = BorderStyle.FixedSingle; panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.dgvData.RefreshTheme(); this.dgvData.RefreshTheme(); this.btnCustomerSource.Click += btnCustomerSource_Click; this.Shown += FrmOldCustomerPortraitEdit_Shown; this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress; } protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } protected virtual void btnClose_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } protected virtual void FrmOldCustomerPortraitEdit_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnCustomerSource_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnRegion_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } } }