FrmTwoSalesOrderUpdate.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.FinancialManagement.TwoSalesOrder
  11. {
  12. public partial class FrmTwoSalesOrderUpdate : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmTwoSalesOrderUpdate()
  15. {
  16. InitializeComponent();
  17. this.Load += FrmTwoSalesOrderUpdate_Load;
  18. this.btnSet.Click += btnSet_Click;
  19. this.btnSet2.Click += btnSet2_Click;
  20. this.btnSave.Click += btnSave_Click;
  21. this.btnCanle.Click += btnCanle_Click;
  22. this.txtTsorder_Telephone.KeyPress += txtTsorder_Telephone_KeyPress;
  23. this.txtTsorder_Money.KeyPress += txtTsorder_Money_KeyPress;
  24. this.txtTsorder_Quantity.KeyPress += txtTsorder_Quantity_KeyPress;
  25. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  26. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  27. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  28. this.btnCustomer.Click += btnCustomer_Click;
  29. }
  30. protected virtual void btnCustomer_Click(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. protected virtual void txtTsorder_Quantity_KeyPress(object sender, KeyPressEventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void txtTsorder_Money_KeyPress(object sender, KeyPressEventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. protected virtual void txtTsorder_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. protected virtual void dgv_Click(object sender, EventArgs e)
  47. {
  48. //throw new NotImplementedException();
  49. }
  50. protected virtual void btnCanle_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. protected virtual void btnSave_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. protected virtual void btnSet2_Click(object sender, EventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. protected virtual void btnSet_Click(object sender, EventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. protected virtual void FrmTwoSalesOrderUpdate_Load(object sender, EventArgs e)
  67. {
  68. //throw new NotImplementedException();
  69. }
  70. }
  71. }