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.InventoryManagement { public partial class FrmProcurementApplication : LYFZ.ComponentLibrary.BaseContentsFormMain { public FrmProcurementApplication() { InitializeComponent(); this.dgv1.RefreshTheme(); this.dgv2.RefreshTheme(); this.Shown += FrmProcurementApplication_Shown; this.cmbPord_PurchaseStatus.SelectedIndexChanged += cmbPord_PurchaseStatus_SelectedIndexChanged; this.btndelete.Click += btndelete_Click; this.btnSave.Click += btnSave_Click; this.btnClose.Click += btnClose_Click; this.dgv2.Click += dgv2_Click; this.btnExport.Click += btnExport_Click; this.btnPrint.Click += btnPrint_Click; panelEx1.BackColor = UIBlueThemeResources.BorderAreaColor; } protected virtual void btnPrint_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void btnExport_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void dgv2_Click(object sender, EventArgs 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 btndelete_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void cmbPord_PurchaseStatus_SelectedIndexChanged(object sender, EventArgs e) { //throw new NotImplementedException(); } protected virtual void FrmProcurementApplication_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } } }