FrmPayment.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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.Dresses.DressManagement.Rental
  11. {
  12. public partial class FrmPayment : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmPayment()
  15. {
  16. InitializeComponent();
  17. this.panelEx1.BackColor = UIBlueThemeResources.BorderAreaColor;
  18. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  19. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. dgv.RefreshTheme();
  22. this.IsCustomScrollBar = true;
  23. txtPay_CreateDatetime.Enter += txtPay_CreateDatetime_Enter;
  24. txtPay_CreateDatetime.Leave += txtPay_CreateDatetime_Leave;
  25. this.btnSave.Click += btnSave_Click;
  26. this.txtPay_AmountOf.KeyPress += txtPay_AmountOf_KeyPress;
  27. this.btnSet.Click += btnSet_Click;
  28. this.txtPay_AmountOf.TextChanged += txtPay_AmountOf_TextChanged;
  29. this.btnDelete.Click += btnDelete_Click;
  30. this.btnHitSingle.Click += new EventHandler(btnHitSingle_Click);
  31. this.btnUpdateTime.Click += btnUpdateTime_Click;
  32. this.Shown += FrmPayment_Shown;
  33. this.cmbType.SelectedValueChanged += cmbType_SelectedValueChanged;
  34. }
  35. protected virtual void cmbType_SelectedValueChanged(object sender, EventArgs e)
  36. {
  37. //throw new NotImplementedException();
  38. }
  39. protected virtual void FrmPayment_Shown(object sender, EventArgs e)
  40. {
  41. //throw new NotImplementedException();
  42. }
  43. protected virtual void btnUpdateTime_Click(object sender, EventArgs e)
  44. {
  45. //throw new NotImplementedException();
  46. }
  47. protected virtual void btnHitSingle_Click(object sender, EventArgs e)
  48. {
  49. //throw new NotImplementedException();
  50. }
  51. protected virtual void btnDelete_Click(object sender, EventArgs e)
  52. {
  53. //throw new NotImplementedException();
  54. }
  55. protected virtual void txtPay_AmountOf_TextChanged(object sender, EventArgs e)
  56. {
  57. //throw new NotImplementedException();
  58. }
  59. protected virtual void btnSet_Click(object sender, EventArgs e)
  60. {
  61. //throw new NotImplementedException();
  62. }
  63. protected virtual void txtPay_AmountOf_KeyPress(object sender, KeyPressEventArgs e)
  64. {
  65. //throw new NotImplementedException();
  66. }
  67. protected virtual void btnSave_Click(object sender, EventArgs e)
  68. {
  69. //throw new NotImplementedException();
  70. }
  71. protected virtual void txtPay_CreateDatetime_Leave(object sender, EventArgs e)
  72. {
  73. //throw new NotImplementedException();
  74. }
  75. protected virtual void txtPay_CreateDatetime_Enter(object sender, EventArgs e)
  76. {
  77. throw new NotImplementedException();
  78. }
  79. protected virtual void FrmTwoSalesOrderPayment_Load(object sender, EventArgs e)
  80. {
  81. //throw new NotImplementedException();
  82. }
  83. private void lblDsro_MortgageAmount_Click(object sender, EventArgs e)
  84. {
  85. }
  86. }
  87. }