UIE042010.cs 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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;
  10. namespace Core.LZMes.Client.UIE
  11. {
  12. public partial class UIE042010 : FrmBase
  13. {
  14. public UIE042010()
  15. {
  16. InitializeComponent();
  17. }
  18. public override void ToolBar_Click(object sender, string ToolbarKey)
  19. {
  20. switch (ToolbarKey)
  21. {
  22. case "Query":
  23. this.DoQuery();
  24. break;
  25. //case "Save":
  26. // this.Save();
  27. // break;
  28. }
  29. }
  30. private void DoQuery()
  31. {
  32. try
  33. {
  34. }
  35. catch (Exception EX)
  36. {
  37. MessageBox.Show(EX.ToString());
  38. }
  39. }
  40. }
  41. }