123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 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.Dresses
- {
- public partial class FrmDressEntry : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmDressEntry()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.Shown += FrmDressEntry_Shown;
- this.btnAdd.Click += btnAdd_Click;
- UcNavigationTool.LabTitle = "礼服录入";
- this.dgv.RefreshTheme();
- this.btnUpdate.Click += btnUpdate_Click;
- this.dgv.DoubleClick += dgv_DoubleClick;
- this.btnDelete.Click += btnDelete_Click;
- this.btnExport.Click += btnExport_Click;
- this.btnSlect.Click += btnSlect_Click;
- }
- protected virtual void btnSlect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnExport_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void dgv_DoubleClick(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnUpdate_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnAdd_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmDressEntry_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|