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) { } } }