G2DRichTextBox.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace CommonFroms.G2D
  10. {
  11. public class G2DRichTextBox : RichTextBox
  12. {
  13. public G2DRichTextBox()
  14. {
  15. }
  16. protected override bool ProcessCmdKey(ref Message msg, Keys kd)
  17. {
  18. if (Focused)
  19. {
  20. if (Keyboard.IsCtrlDown)
  21. {
  22. Keys keyData = kd ^ Keys.Control;
  23. switch (keyData)
  24. {
  25. case Keys.C: DoCopy(); return true;
  26. case Keys.V: if (!ReadOnly) DoPaste(); return true;
  27. case Keys.X: if (!ReadOnly) DoCut(); return true;
  28. }
  29. }
  30. else
  31. {
  32. switch (kd)
  33. {
  34. case Keys.Delete: if (!ReadOnly) DoDelete(); return true;
  35. }
  36. }
  37. }
  38. return base.ProcessCmdKey(ref msg, kd);
  39. }
  40. protected virtual void DoCopy()
  41. {
  42. if (this.SelectionLength > 0)
  43. {
  44. Clipboard.SetText(this.Text.Substring(this.SelectionStart, this.SelectionLength));
  45. }
  46. }
  47. protected virtual void DoPaste()
  48. {
  49. var text = this.Text;
  50. var clip = Clipboard.GetText();
  51. if (this.SelectionLength > 0)
  52. {
  53. text = text.Remove(this.SelectionStart, this.SelectionLength);
  54. }
  55. text = text.Insert(this.SelectionStart, clip);
  56. var new_pos = this.SelectionStart + clip.Length;
  57. this.Text = text;
  58. this.SelectionStart = new_pos;
  59. this.SelectionLength = 0;
  60. }
  61. protected virtual void DoDelete()
  62. {
  63. var text = this.Text;
  64. if (text.Length > 0)
  65. {
  66. if (this.SelectionLength > 0)
  67. {
  68. text = text.Remove(this.SelectionStart, this.SelectionLength);
  69. }
  70. else if (this.SelectionStart < text.Length - 1)
  71. {
  72. text = text.Substring(0, text.Length - 1);
  73. }
  74. this.Text = text;
  75. }
  76. }
  77. protected virtual void DoCut()
  78. {
  79. DoCopy();
  80. DoDelete();
  81. }
  82. }
  83. }