FrmEntry.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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.DressEntry
  11. {
  12. public partial class FrmEntry : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmEntry()
  15. {
  16. InitializeComponent();
  17. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  18. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.Shown += FrmEntry_Shown;
  21. this.btnDsfm_DressType.Click += btnDsfm_DressType_Click;
  22. this.btnDsfm_PlacedRegion.Click += btnDsfm_PlacedRegion_Click;
  23. this.txtDsfm_DressQuantity.KeyPress += txtDsfm_DressQuantity_KeyPress;
  24. this.txtDsfm_CostPrice.KeyPress += txtDsfm_CostPrice_KeyPress;
  25. this.txtDsfm_RentPrice.KeyPress += txtDsfm_RentPrice_KeyPress;
  26. this.txtDsfm_SalePrice.KeyPress += txtDsfm_SalePrice_KeyPress;
  27. this.btnUpload.Click += btnUpload_Click;
  28. this.btnSave.Click += btnSave_Click;
  29. this.btnClear.Click += btnClear_Click;
  30. this.btnClose.Click += btnClose_Click;
  31. this.txtDsfm_DressName.TextChanged += txtDsfm_DressName_TextChanged;
  32. this.btnRefresh.Click += btnRefresh_Click;
  33. }
  34. protected virtual void btnRefresh_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void txtDsfm_DressName_TextChanged(object sender, EventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. protected virtual void btnClose_Click(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. protected virtual void btnClear_Click(object sender, EventArgs e)
  47. {
  48. //throw new NotImplementedException();
  49. }
  50. protected virtual void btnSave_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. protected virtual void btnUpload_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. protected virtual void txtDsfm_SalePrice_KeyPress(object sender, KeyPressEventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. protected virtual void txtDsfm_RentPrice_KeyPress(object sender, KeyPressEventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. protected virtual void txtDsfm_CostPrice_KeyPress(object sender, KeyPressEventArgs e)
  67. {
  68. //throw new NotImplementedException();
  69. }
  70. protected virtual void txtDsfm_DressQuantity_KeyPress(object sender, KeyPressEventArgs e)
  71. {
  72. //throw new NotImplementedException();
  73. }
  74. protected virtual void btnDsfm_PlacedRegion_Click(object sender, EventArgs e)
  75. {
  76. //throw new NotImplementedException();
  77. }
  78. protected virtual void btnDsfm_DressType_Click(object sender, EventArgs e)
  79. {
  80. //throw new NotImplementedException();
  81. }
  82. protected virtual void FrmEntry_Shown(object sender, EventArgs e)
  83. {
  84. //throw new NotImplementedException();
  85. }
  86. }
  87. }