123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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 FrmAddContacts : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmAddContacts()
- {
- InitializeComponent();
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.Shown += FrmAddContacts_Shown;
- // this.btnSetGrade.Click += btnSetGrade_Click;
- this.btnRegion.Click += btnRegion_Click;
- //this.btnCustomerSource.Click += btnCustomerSource_Click;
- this.btnSave.Click += btnSave_Click;
- this.btnClose.Click += btnClose_Click;
- this.txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress;
- this.txtCus_QQ.KeyPress += txtCus_QQ_KeyPress;
- }
- protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(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();
- }
- protected virtual void btnSetGrade_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmAddContacts_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- private void panelEx1_Paint(object sender, PaintEventArgs e)
- {
- }
- }
- }
|