12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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 FrmDelivery : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmDelivery()
- {
- this.IsCustomScrollBar = true;
- InitializeComponent();
- this.dgv1.RefreshTheme();
- this.dgv2.RefreshTheme();
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- UcNavigationTool.LabTitle = "出库单";
- this.Shown += FrmDelivery_Shown;
- this.btnLibrary.Click += btnLibrary_Click;
- this.dgv1.CellValueChanged += dgv1_CellValueChanged;
- this.radLibrary.Click += radLibrary_Click;
- this.radLibraryRecord.Click += radLibraryRecord_Click;
- this.CtvSelect.ComboBoxTreeViewEx_TextChanged += CtvSelect_ComboBoxTreeViewEx_TextChanged;
- 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 radLibraryRecord_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radLibrary_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void dgv1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnLibrary_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmDelivery_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|