EditTextBlockAdorner.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. using System.Windows.Data;
  4. using System.Windows.Documents;
  5. using System.Windows.Input;
  6. using System.Windows.Media;
  7. namespace OpenSEMI.Ctrlib.Controls
  8. {
  9. public class EditTextBlockAdorner : Adorner
  10. {
  11. private readonly VisualCollection _collection;
  12. private readonly TextBoxEx _textBox;
  13. private readonly TextBlock _textBlock;
  14. protected override int VisualChildrenCount => _collection.Count;
  15. public TextBoxEx TextBox => _textBox;
  16. public event RoutedEventHandler TextBoxLostFocus
  17. {
  18. add
  19. {
  20. _textBox.LostFocus += value;
  21. }
  22. remove
  23. {
  24. _textBox.LostFocus -= value;
  25. }
  26. }
  27. public event KeyEventHandler TextBoxKeyUp
  28. {
  29. add
  30. {
  31. _textBox.KeyUp += value;
  32. }
  33. remove
  34. {
  35. _textBox.KeyUp -= value;
  36. }
  37. }
  38. public EditTextBlockAdorner(EditTextBlock adornedElement)
  39. : base(adornedElement)
  40. {
  41. _collection = new VisualCollection(this);
  42. _textBox = new TextBoxEx();
  43. _textBlock = adornedElement;
  44. Binding binding = new Binding("Text")
  45. {
  46. Source = adornedElement
  47. };
  48. binding.Mode = BindingMode.TwoWay;
  49. _textBox.SetBinding(System.Windows.Controls.TextBox.TextProperty, binding);
  50. _textBox.EditBoxMode = adornedElement.EditBoxMode;
  51. _textBox.AllowEmpty = adornedElement.AllowEmpty;
  52. _textBox.AllowBackgroundChange = adornedElement.AllowBackgroundChange;
  53. _textBox.MaxValue = adornedElement.MaxValue;
  54. _textBox.MinValue = adornedElement.MinValue;
  55. _textBox.Accuracy = adornedElement.Accuracy;
  56. _textBox.IsScrollToEnd = adornedElement.IsScrollToEnd;
  57. binding = new Binding("TextSaved")
  58. {
  59. Source = adornedElement
  60. };
  61. binding.Mode = BindingMode.TwoWay;
  62. _textBox.SetBinding(TextBoxEx.TextSavedProperty, binding);
  63. _textBox.KeyUp += _textBox_KeyUp;
  64. _collection.Add(_textBox);
  65. }
  66. protected override Visual GetVisualChild(int index)
  67. {
  68. return _collection[index];
  69. }
  70. protected override Size ArrangeOverride(Size finalSize)
  71. {
  72. _textBox.Arrange(new Rect(0.0, 0.0, _textBlock.ActualWidth, _textBlock.ActualHeight));
  73. _textBox.Focus();
  74. _textBox.ScrollToEnd();
  75. return finalSize;
  76. }
  77. private void _textBox_KeyUp(object sender, KeyEventArgs e)
  78. {
  79. if (e.Key == Key.Return)
  80. {
  81. _textBox.Text = _textBox.Text.Replace("\r\n", string.Empty);
  82. _textBox.GetBindingExpression(System.Windows.Controls.TextBox.TextProperty)?.UpdateSource();
  83. _textBox.GetBindingExpression(TextBoxEx.TextSavedProperty)?.UpdateSource();
  84. }
  85. }
  86. }
  87. }