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.DressEntry
- {
- public partial class FrmEntry : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmEntry()
- {
- InitializeComponent();
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.Shown += FrmEntry_Shown;
- this.btnDsfm_DressType.Click += btnDsfm_DressType_Click;
- this.btnDsfm_PlacedRegion.Click += btnDsfm_PlacedRegion_Click;
- this.txtDsfm_DressQuantity.KeyPress += txtDsfm_DressQuantity_KeyPress;
- this.txtDsfm_CostPrice.KeyPress += txtDsfm_CostPrice_KeyPress;
- this.txtDsfm_RentPrice.KeyPress += txtDsfm_RentPrice_KeyPress;
- this.txtDsfm_SalePrice.KeyPress += txtDsfm_SalePrice_KeyPress;
- this.btnUpload.Click += btnUpload_Click;
- this.btnSave.Click += btnSave_Click;
- this.btnClear.Click += btnClear_Click;
- this.btnClose.Click += btnClose_Click;
- this.txtDsfm_DressName.TextChanged += txtDsfm_DressName_TextChanged;
- this.btnRefresh.Click += btnRefresh_Click;
- }
- protected virtual void btnRefresh_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsfm_DressName_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClear_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnUpload_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsfm_SalePrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsfm_RentPrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsfm_CostPrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtDsfm_DressQuantity_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDsfm_PlacedRegion_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDsfm_DressType_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmEntry_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|