FrmRatingSet.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.CustomerSatisfactionRecord.Satisfaction
  11. {
  12. public partial class FrmRatingSet : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmRatingSet()
  15. {
  16. InitializeComponent();
  17. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  18. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.dgv.RefreshTheme();
  21. this.Shown += FrmRatingSet_Shown;
  22. this.btnSave.Click += btnSave_Click;
  23. this.btnDelete.Click += btnDelete_Click;
  24. this.btnCanle.Click += btnCanle_Click;
  25. this.dgv.Click += dgv_Click;
  26. this.txtSfrs_Scores.KeyPress += txtSfrs_Scores_KeyPress;
  27. // this.txtSfrs_TotalPoints.KeyPress += txtSfrs_TotalPoints_KeyPress;
  28. }
  29. protected virtual void txtSfrs_TotalPoints_KeyPress(object sender, KeyPressEventArgs e)
  30. {
  31. //throw new NotImplementedException();
  32. }
  33. protected virtual void txtSfrs_Scores_KeyPress(object sender, KeyPressEventArgs e)
  34. {
  35. //throw new NotImplementedException();
  36. }
  37. protected virtual void dgv_Click(object sender, EventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void btnCanle_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void btnDelete_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void btnSave_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void FrmRatingSet_Shown(object sender, EventArgs e)
  54. {
  55. //throw new NotImplementedException();
  56. }
  57. }
  58. }