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.InitialSet { public partial class FrmSupplierSet : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmSupplierSet() { InitializeComponent(); dgv.RefreshTheme(); this.IsCustomScrollBar = true; this.Load += new EventHandler(FrmSupplierSet_Load); this.btnAdd.Click += new EventHandler(btnAdd_Click); this.btnDelete.Click += new EventHandler(btnDelete_Click); this.btnSave.Click += new EventHandler(btnSave_Click); this.btnClose.Click += new EventHandler(btnClose_Click); this.dgv.Click += new EventHandler(dgv_Click); this.txtVd_Telephone.KeyPress += new KeyPressEventHandler(txtVd_Telephone_KeyPress); panelEx1.BorderStyle = BorderStyle.FixedSingle; panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor; this.Shown += FrmSupplierSet_Shown; } protected virtual void FrmSupplierSet_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void pagerEx1_EventPaging(EventArgs e) { //throw new NotImplementedException(); } protected virtual void txtVd_Telephone_KeyPress(object sender, KeyPressEventArgs e) { } protected virtual void dgv_Click(object sender, EventArgs e) { } protected virtual void btnClose_Click(object sender, EventArgs e) { } protected virtual void btnSave_Click(object sender, EventArgs e) { } protected virtual void btnDelete_Click(object sender, EventArgs e) { } protected virtual void btnAdd_Click(object sender, EventArgs e) { } protected virtual void FrmSupplierSet_Load(object sender, EventArgs e) { } } }