FrmAttractionsSet.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using LYFZ.ComponentLibrary;
  10. namespace LYFZ.Software.UI.InitialSet
  11. {
  12. public partial class FrmAttractionsSet : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmAttractionsSet()
  15. {
  16. InitializeComponent();
  17. this.dgv.RefreshTheme();
  18. this.dgv2.RefreshTheme();
  19. this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. this.panelEx5.BorderColor = UIBlueThemeResources.BorderAreaColor;
  22. this.panelEx5.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  23. this.Load += FrmAttractionsSet_Load;
  24. this.Shown += FrmAttractionsSet_Shown;
  25. this.btnSave.Click += new EventHandler(btnSave_Click);
  26. this.btnDelete.Click += new EventHandler(btnDelete_Click);
  27. this.txtTsc_CostPrice.KeyPress += new KeyPressEventHandler(txtTsc_CostPrice_KeyPress);
  28. this.txtTsc_SalesPrice.KeyPress += new KeyPressEventHandler(txtTsc_SalesPrice_KeyPress);
  29. this.btnAdd.Click += new EventHandler(btnAdd_Click);
  30. this.btnSave2.Click += btnSave2_Click;
  31. this.btnDelete2.Click += btnDelete2_Click;
  32. this.btnClose2.Click += btnClose2_Click;
  33. this.dgv2.Click += dgv2_Click;
  34. this.btnAdd2.Click += btnAdd2_Click;
  35. }
  36. protected virtual void FrmAttractionsSet_Load(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void btnAdd2_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void dgv2_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void btnClose2_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. protected virtual void btnDelete2_Click(object sender, EventArgs e)
  53. {
  54. //throw new NotImplementedException();
  55. }
  56. protected virtual void btnSave2_Click(object sender, EventArgs e)
  57. {
  58. //throw new NotImplementedException();
  59. }
  60. protected virtual void FrmAttractionsSet_Shown(object sender, EventArgs e)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. protected virtual void btnAdd_Click(object sender, EventArgs e)
  65. {
  66. //throw new NotImplementedException();
  67. }
  68. protected virtual void txtTsc_SalesPrice_KeyPress(object sender, KeyPressEventArgs e)
  69. {
  70. }
  71. protected virtual void txtTsc_CostPrice_KeyPress(object sender, KeyPressEventArgs e)
  72. {
  73. }
  74. protected virtual void btnDelete_Click(object sender, EventArgs e)
  75. {
  76. }
  77. protected virtual void btnSave_Click(object sender, EventArgs e)
  78. {
  79. }
  80. }
  81. }