FrmBulletinBoard.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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.BulletinBoard
  11. {
  12. public partial class FrmBulletinBoard : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmBulletinBoard()
  15. {
  16. InitializeComponent();
  17. //this.IsCustomScrollBar = true;
  18. this.Load += new EventHandler(FrmBulletinBoard_Load);
  19. this.radBulletinBoard.Click += new EventHandler(radBulletinBoard_Click);
  20. this.radInternalMail.Click += new EventHandler(radInternalMail_Click);
  21. this.btnAnnouncement.Click += new EventHandler(btnAnnouncement_Click);
  22. this.dgv.DoubleClick += new EventHandler(dgv_DoubleClick);
  23. this.btnSelect.Click += new EventHandler(btnSelect_Click);
  24. this.btnReleaseMail.Click += new EventHandler(btnReleaseMail_Click);
  25. this.btnClose.Click += new EventHandler(btnClose_Click);
  26. this.btnDelete.Click += new EventHandler(btnDelete_Click);
  27. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  28. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  29. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  30. panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  31. UcNavigationTool.LabTitle = "公告栏";
  32. this.dgv.RefreshTheme();
  33. this.radInbox.Click += radInbox_Click;
  34. this.radOutbox.Click += radOutbox_Click;
  35. this.Shown += FrmBulletinBoard_Shown;
  36. }
  37. protected virtual void FrmBulletinBoard_Shown(object sender, EventArgs e)
  38. {
  39. //throw new NotImplementedException();
  40. }
  41. protected virtual void radOutbox_Click(object sender, EventArgs e)
  42. {
  43. //throw new NotImplementedException();
  44. }
  45. protected virtual void radInbox_Click(object sender, EventArgs e)
  46. {
  47. //throw new NotImplementedException();
  48. }
  49. protected virtual void btnDelete_Click(object sender, EventArgs e)
  50. {
  51. //throw new NotImplementedException();
  52. }
  53. protected virtual void btnClose_Click(object sender, EventArgs e)
  54. {
  55. throw new NotImplementedException();
  56. }
  57. protected virtual void btnReleaseMail_Click(object sender, EventArgs e)
  58. {
  59. //throw new NotImplementedException();
  60. }
  61. protected virtual void btnSelect_Click(object sender, EventArgs e)
  62. {
  63. //throw new NotImplementedException();
  64. }
  65. protected virtual void dgv_DoubleClick(object sender, EventArgs e)
  66. {
  67. //throw new NotImplementedException();
  68. }
  69. protected virtual void btnAnnouncement_Click(object sender, EventArgs e)
  70. {
  71. //throw new NotImplementedException();
  72. }
  73. protected virtual void radInternalMail_Click(object sender, EventArgs e)
  74. {
  75. //throw new NotImplementedException();
  76. }
  77. protected virtual void radBulletinBoard_Click(object sender, EventArgs e)
  78. {
  79. //throw new NotImplementedException();
  80. }
  81. protected virtual void FrmBulletinBoard_Load(object sender, EventArgs e)
  82. {
  83. //throw new NotImplementedException();
  84. }
  85. }
  86. }