FrmAnnouncement.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 FrmAnnouncement : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmAnnouncement()
  15. {
  16. InitializeComponent();
  17. this.btnClose.Click += new EventHandler(btnClose_Click);
  18. this.btnBrowse.Click += new EventHandler(btnBrowse_Click);
  19. this.btnRelease.Click += new EventHandler(btnRelease_Click);
  20. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  21. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  22. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  23. }
  24. protected virtual void btnRelease_Click(object sender, EventArgs e)
  25. {
  26. //throw new NotImplementedException();
  27. }
  28. protected virtual void btnBrowse_Click(object sender, EventArgs e)
  29. {
  30. //throw new NotImplementedException();
  31. }
  32. protected virtual void btnClose_Click(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. }
  37. }