1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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 FrmReceipt : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmReceipt()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- this.dgv2.RefreshTheme();
- UcNavigationTool.LabTitle = "入库单";
- this.Shown += FrmReceipt_Shown;
- this.btnWarehousing.Click += btnWarehousing_Click;
- this.CtvSelect.ComboBoxTreeViewEx_TextChanged += CtvSelect_ComboBoxTreeViewEx_TextChanged;
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.btnDelete.Click += btnDelete_Click;
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void CtvSelect_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radWarehousingRecord_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radWarehousing_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnWarehousing_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmReceipt_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|