12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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
- {
- public partial class FrmPreselected : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmPreselected()
- {
- 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 += FrmPreselected_Shown;
- this.btnSlect.Click += btnSlect_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnSelect.Click += btnSelect_Click;
- this.dgv.DoubleClick += dgv_DoubleClick;
- }
- protected virtual void dgv_DoubleClick(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSelect_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 FrmPreselected_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|