123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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.FinancialManagement.TwoSalesOrder
- {
- public partial class FrmTwoSalesOrderUpdate : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmTwoSalesOrderUpdate()
- {
- InitializeComponent();
- this.Load += FrmTwoSalesOrderUpdate_Load;
- this.btnSet.Click += btnSet_Click;
- this.btnSet2.Click += btnSet2_Click;
- this.btnSave.Click += btnSave_Click;
- this.btnCanle.Click += btnCanle_Click;
- this.txtTsorder_Telephone.KeyPress += txtTsorder_Telephone_KeyPress;
- this.txtTsorder_Money.KeyPress += txtTsorder_Money_KeyPress;
- this.txtTsorder_Quantity.KeyPress += txtTsorder_Quantity_KeyPress;
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.btnCustomer.Click += btnCustomer_Click;
- }
- protected virtual void btnCustomer_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtTsorder_Quantity_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtTsorder_Money_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtTsorder_Telephone_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void dgv_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnCanle_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSet2_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSet_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmTwoSalesOrderUpdate_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|