FrmMicroShare.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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.MicroShare
  11. {
  12. public partial class FrmMicroShare : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmMicroShare()
  15. {
  16. InitializeComponent();
  17. this.Shown += FrmMicroShare_Shown;
  18. this.btnUpload.Click += btnUpload_Click;
  19. this.lstPic.ItemChecked += lstPic_ItemChecked;
  20. this.btnAll.Click += btnAll_Click;
  21. this.btnCancel.Click += btnCancel_Click;
  22. this.toolSelected.Click += toolSelected_Click;
  23. this.toolCancel.Click += toolCancel_Click;
  24. this.btnBrowse.Click += btnBrowse_Click;
  25. panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
  26. skinPanel1.Click += skinPanel1_Click;
  27. }
  28. void skinPanel1_Click(object sender, EventArgs e)
  29. {
  30. skinPanel1.Focus();
  31. }
  32. protected virtual void btnBrowse_Click(object sender, EventArgs e)
  33. {
  34. //throw new NotImplementedException();
  35. }
  36. protected virtual void toolCancel_Click(object sender, EventArgs e)
  37. {
  38. //throw new NotImplementedException();
  39. }
  40. protected virtual void toolSelected_Click(object sender, EventArgs e)
  41. {
  42. //throw new NotImplementedException();
  43. }
  44. protected virtual void btnCancel_Click(object sender, EventArgs e)
  45. {
  46. //throw new NotImplementedException();
  47. }
  48. protected virtual void btnAll_Click(object sender, EventArgs e)
  49. {
  50. //throw new NotImplementedException();
  51. }
  52. protected virtual void lstPic_ItemChecked(object sender, ItemCheckedEventArgs e)
  53. {
  54. // throw new NotImplementedException();
  55. }
  56. protected virtual void btnUpload_Click(object sender, EventArgs e)
  57. {
  58. ///throw new NotImplementedException();
  59. }
  60. protected virtual void FrmMicroShare_Shown(object sender, EventArgs e)
  61. {
  62. //throw new NotImplementedException();
  63. }
  64. }
  65. }