FrmImportNumbers.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.SMSManagement.ShortSmsMessage
  11. {
  12. public partial class FrmImportNumbers : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmImportNumbers()
  15. {
  16. InitializeComponent();
  17. this.Load += new EventHandler(FrmImportNumbers_Load);
  18. this.btnOk.Click += new EventHandler(btnOk_Click);
  19. this.txtProd_SalesPrice.KeyPress += new KeyPressEventHandler(txtProd_SalesPrice_KeyPress);
  20. this.txtProd_SalesPrice.TextChanged += new EventHandler(txtProd_SalesPrice_TextChanged);
  21. this.btnCanle.Click += new EventHandler(btnCanle_Click);
  22. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  23. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  24. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  25. }
  26. protected virtual void btnCanle_Click(object sender, EventArgs e)
  27. {
  28. //throw new NotImplementedException();
  29. }
  30. protected virtual void txtProd_SalesPrice_TextChanged(object sender, EventArgs e)
  31. {
  32. //throw new NotImplementedException();
  33. }
  34. protected virtual void FrmImportNumbers_Load(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void txtProd_SalesPrice_KeyPress(object sender, KeyPressEventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. protected virtual void btnOk_Click(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. }
  47. }