12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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 FrmAlsoBack : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmAlsoBack()
- {
- InitializeComponent();
- this.Shown += FrmAlsoBack_Shown;
- this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
- this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.dgv.RefreshTheme();
- this.dgv.CellMouseDoubleClick += dgv_CellMouseDoubleClick;
- this.cmbFactory.Leave += cmbFactory_Leave;
- this.btnSave.Click += btnSave_Click;
- this.btnClose.Click += btnClose_Click;
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void cmbFactory_Leave(object sender, EventArgs e)
- {
- }
- protected virtual void dgv_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmAlsoBack_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|