FrmOrdersCustomer.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.Customers
  11. {
  12. public partial class FrmOrdersCustomer : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmOrdersCustomer()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmOrdersCustomer_Load);
  19. this.btnSlect.Click += new EventHandler(btnSlect_Click);
  20. this.btnExport.Click += new EventHandler(btnExport_Click);
  21. this.btnClose.Click += new EventHandler(btnClose_Click);
  22. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. // panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  26. UcNavigationTool.LabTitle = "订单客户";
  27. this.Shown += FrmOrdersCustomer_Shown;
  28. this.btnUpdate.Click += btnUpdate_Click;
  29. this.chkEt.Click += chkEt_Click;
  30. this.chkFw.Click += chkFw_Click;
  31. this.chkHs.Click += chkHs_Click;
  32. this.chkXz.Click += chkXz_Click;
  33. }
  34. protected virtual void chkXz_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void chkHs_Click(object sender, EventArgs e)
  39. {
  40. // throw new NotImplementedException();
  41. }
  42. protected virtual void chkFw_Click(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. protected virtual void chkEt_Click(object sender, EventArgs e)
  47. {
  48. //throw new NotImplementedException();
  49. }
  50. protected virtual void btnUpdate_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. protected virtual void FrmOrdersCustomer_Shown(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. protected virtual void pagerEx1_EventPaging(EventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. protected virtual void btnClose_Click(object sender, EventArgs e)
  63. {
  64. }
  65. protected virtual void btnExport_Click(object sender, EventArgs e)
  66. {
  67. }
  68. protected virtual void btnSlect_Click(object sender, EventArgs e)
  69. {
  70. }
  71. protected virtual void FrmOrdersCustomer_Load(object sender, EventArgs e)
  72. {
  73. }
  74. private void panelEx2_Paint(object sender, PaintEventArgs e)
  75. {
  76. }
  77. }
  78. }