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