123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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 FrmInventory : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmInventory()
- {
- InitializeComponent();
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.dgv1.RefreshTheme();
- this.Shown += FrmInventory_Shown;
- this.btnSave.Click += btnSave_Click;
- this.btnClose.Click += btnClose_Click;
- this.dgv1.CellValueChanged += dgv1_CellValueChanged;
- }
- protected virtual void dgv1_CellValueChanged(object sender, DataGridViewCellEventArgs 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 FrmInventory_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|