123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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.Rental
- {
- public partial class FrmRentalManagement : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmRentalManagement()
- {
- 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 += FrmRentalManagement_Shown;
- this.btnSlect.Click += btnSlect_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnUpdate.Click += btnUpdate_Click;
- this.btnPrint.Click += btnPrint_Click;
- this.btnAlsoback.Click += btnAlsoback_Click;
- this.btnReceivables.Click += btnReceivables_Click;
- this.btnRefund.Click += btnRefund_Click;
- }
- protected virtual void btnRefund_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnReceivables_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- 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 btnUpdate_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSlect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmRentalManagement_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|