G2DTextDialog.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 G2DTextDialog : Form
  11. {
  12. public G2DTextDialog(string name)
  13. {
  14. InitializeComponent();
  15. this.textBox1.Text = name;
  16. this.textBox1.SelectAll();
  17. this.textBox1.Focus();
  18. }
  19. public string GetText()
  20. {
  21. return textBox1.Text;
  22. }
  23. //----------------------------------------------------------------------------------
  24. public static string Show(string name, string title)
  25. {
  26. G2DTextDialog dialog = new G2DTextDialog(name);
  27. dialog.Text = title;
  28. DialogResult res = dialog.ShowDialog();
  29. if (res == System.Windows.Forms.DialogResult.OK)
  30. {
  31. if (!string.IsNullOrEmpty(dialog.GetText()))
  32. {
  33. return dialog.GetText();
  34. }
  35. }
  36. return null;
  37. }
  38. public static string Show(string name)
  39. {
  40. return Show(name, name);
  41. }
  42. }
  43. }