123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- 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 FrmPreselectedUpdate : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmPreselectedUpdate()
- {
- InitializeComponent();
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx1.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.Shown += FrmPreselectedUpdate_Shown;
- this.dgv.Click += dgv_Click;
- this.dgv.RefreshTheme();
- this.btndelete.Click += btndelete_Click;
- this.btnClose.Click += btnClose_Click;
- this.btnSave.Click += btnSave_Click;
- this.txtDsro_TakeDressTime.Enter += txtDsro_TakeDressTime_Enter;
- this.txtDsro_TakeDressTime.Leave += txtDsro_TakeDressTime_Leave;
- this.txtDsro_ReservationBackTime.Enter += txtDsro_ReservationBackTime_Enter;
- this.txtDsro_ReservationBackTime.Leave += txtDsro_ReservationBackTime_Leave;
- this.txtDsro_Amount.KeyPress += txtDsro_Amount_KeyPress;
- this.txtDsro_MortgageAmount.KeyPress += txtDsro_MortgageAmount_KeyPress;
- this.btnSelect.Click += btnSelect_Click;
- this.btnOk.Click += btnOk_Click;
- }
- protected virtual void btnOk_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSelect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsro_MortgageAmount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsro_Amount_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsro_ReservationBackTime_Leave(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsro_ReservationBackTime_Enter(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsro_TakeDressTime_Leave(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsro_TakeDressTime_Enter(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btndelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void dgv_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmPreselectedUpdate_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|