123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 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 FrmPayment : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmPayment()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- dgv.RefreshTheme();
- this.IsCustomScrollBar = true;
- txtPay_CreateDatetime.Enter += txtPay_CreateDatetime_Enter;
- txtPay_CreateDatetime.Leave += txtPay_CreateDatetime_Leave;
- this.btnSave.Click += btnSave_Click;
- this.txtPay_AmountOf.KeyPress += txtPay_AmountOf_KeyPress;
- this.btnSet.Click += btnSet_Click;
- this.txtPay_AmountOf.TextChanged += txtPay_AmountOf_TextChanged;
- this.btnDelete.Click += btnDelete_Click;
- this.btnHitSingle.Click += new EventHandler(btnHitSingle_Click);
- this.btnUpdateTime.Click += btnUpdateTime_Click;
- this.Shown += FrmPayment_Shown;
- this.cmbType.SelectedValueChanged += cmbType_SelectedValueChanged;
- }
- protected virtual void cmbType_SelectedValueChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmPayment_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnUpdateTime_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnHitSingle_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtPay_AmountOf_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSet_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtPay_AmountOf_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtPay_CreateDatetime_Leave(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtPay_CreateDatetime_Enter(object sender, EventArgs e)
- {
- throw new NotImplementedException();
- }
- protected virtual void FrmTwoSalesOrderPayment_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- private void lblDsro_MortgageAmount_Click(object sender, EventArgs e)
- {
- }
- }
- }
|