12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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
- {
- /// <summary>
- /// 服务老客户
- /// </summary>
- public partial class FrmOldCustomerOtherAdd : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmOldCustomerOtherAdd()
- {
- InitializeComponent();
- 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.btnCustomerSource.Click += btnCustomerSource_Click;
- this.txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress;
- this.btnClose.Click += btnClose_Click;
- this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
- this.btnRegion.Click+=btnRegion_Click;
- this.btnClear.Click+=btnClear_Click;
- this.dgvData.RefreshTheme();
- }
-
- protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
- {
-
- }
- protected virtual void btnClear_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnCusSelect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtCus_Name_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs 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();
- }
- }
- }
|