G2DSearchDialog.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace CommonFroms.G2D
  9. {
  10. public partial class G2DSearchDialog : Form
  11. {
  12. private static string last_find_text = "";
  13. public G2DSearchDialog()
  14. {
  15. InitializeComponent();
  16. this.textBox1.Text = last_find_text;
  17. this.textBox1.SelectAll();
  18. this.textBox1.Focus();
  19. }
  20. private void G2DSearchDialog_Shown(object sender, EventArgs e)
  21. {
  22. textBox1.Focus();
  23. }
  24. private void G2DSearchDialog_FormClosed(object sender, FormClosedEventArgs e)
  25. {
  26. last_find_text = textBox1.Text;
  27. }
  28. public string GetText()
  29. {
  30. return textBox1.Text;
  31. }
  32. private void findOver(object finded)
  33. {
  34. if (finded == null)
  35. {
  36. lbl_status.ForeColor = Color.Red;
  37. lbl_status.Text = "未找到";
  38. }
  39. else
  40. {
  41. lbl_status.ForeColor = Color.Black;
  42. lbl_status.Text = finded.ToString();
  43. }
  44. }
  45. //----------------------------------------------------------------------------------
  46. public delegate object OnFindNextClicked(string text);
  47. public delegate object OnFindPrevClicked(string text);
  48. public delegate object OnFindClicked(string text);
  49. public event OnFindNextClicked FindNextClicked;
  50. public event OnFindPrevClicked FindPrevClicked;
  51. public event OnFindClicked FindClicked;
  52. private void button_next_Click(object sender, EventArgs e)
  53. {
  54. if (FindNextClicked != null)
  55. {
  56. object finded = FindNextClicked.Invoke(GetText());
  57. findOver(finded);
  58. }
  59. }
  60. private void button_prev_Click(object sender, EventArgs e)
  61. {
  62. if (FindPrevClicked != null)
  63. {
  64. object finded = FindPrevClicked.Invoke(GetText());
  65. findOver(finded);
  66. }
  67. }
  68. private void button_find_Click(object sender, EventArgs e)
  69. {
  70. if (FindClicked != null)
  71. {
  72. object finded = FindClicked.Invoke(GetText());
  73. findOver(finded);
  74. }
  75. }
  76. private void button_close_Click(object sender, EventArgs e)
  77. {
  78. this.Close();
  79. }
  80. //----------------------------------------------------------------------------------
  81. }
  82. }