1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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 FrmOldCustomerEdit : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmOldCustomerEdit()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- this.IsCustomScrollBar = true;
- this.Load += new EventHandler(FrmOldCustomerEdit_Load);
- this.btnSave.Click += new EventHandler(btnUpdate_Click);
- this.dgvData.Click += new EventHandler(dgv2_Click);
- 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;
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.dgvData.RefreshTheme();
- this.btnRegion.Click += btnRegion_Click;
- this.btnCustomerSource.Click += btnCustomerSource_Click;
- this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
- }
- protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
- {
- }
- protected virtual void btnCustomerSource_Click(object sender, EventArgs e)
- {
- }
- protected virtual void btnRegion_Click(object sender, EventArgs e)
- {
- }
- protected virtual void btnSetGrade_Click(object sender, EventArgs e)
- {
-
- }
- protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
- {
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- }
- protected virtual void dgv2_Click(object sender, EventArgs e)
- {
- }
- protected virtual void btnUpdate_Click(object sender, EventArgs e)
- {
- }
- protected virtual void FrmOldCustomerEdit_Load(object sender, EventArgs e)
- {
- }
- }
- }
|