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.Dresses.DressManagement.Valet
- {
- public partial class FrmValetManagement : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmValetManagement()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.dgv.RefreshTheme();
- this.Shown += FrmValetManagement_Shown;
- this.btnSlect.Click += btnSlect_Click;
- this.btnUpdate.Click += btnUpdate_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnPrint.Click += btnPrint_Click;
- this.btnAlsoback.Click += btnAlsoback_Click;
- }
- protected virtual void btnAlsoback_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnPrint_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnUpdate_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSlect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmValetManagement_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|