FrmPop-GetBalance.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using CoreFS.CA06;using Pur.Entity;
  10. using Pur.Entity;
  11. namespace Pur.Pop_upWindow
  12. {
  13. public partial class FrmPop_GetBalance : FrmPmsBase
  14. {
  15. public string balclass;
  16. public FrmPop_GetBalance()
  17. {
  18. InitializeComponent();
  19. }
  20. public FrmPop_GetBalance(OpeBase ob,String bal)
  21. {
  22. this.balclass = bal;
  23. this.ob = ob;
  24. InitializeComponent();
  25. }
  26. private void FrmPop_GetBalance_Load(object sender, EventArgs e)
  27. {
  28. }
  29. private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
  30. {
  31. switch (e.Tool.Key)
  32. {
  33. case "querybal": // ButtonTool
  34. // Place code here
  35. break;
  36. case "submitbal": // ButtonTool
  37. // Place code here
  38. break;
  39. case "closebal": // ButtonTool
  40. // Place code here
  41. break;
  42. }
  43. }
  44. }
  45. }