Усі відповіді тут - це лише використання TextBox
або намагання здійснити підбір тексту вручну, що призводить до низької продуктивності або поведінки, що не є рідною (миготіння карети TextBox
, відсутність підтримки клавіатури в ручних реалізаціях тощо)
Після годин копання та читання вихідного коду WPF я замість цього відкрив спосіб включення нативної тексту тексту WPF для TextBlock
елементів керування (або насправді будь-яких інших елементів управління). Більшість функціональних можливостей навколо вибору тексту реалізовані в System.Windows.Documents.TextEditor
системному класі.
Щоб увімкнути підбір тексту для свого керування, потрібно зробити дві дії:
Зателефонуйте TextEditor.RegisterCommandHandlers()
один раз, щоб зареєструвати обробників подій класу
Створення екземпляра TextEditor
для кожного екземпляра вашого класу і передати основний примірник ваших System.Windows.Documents.ITextContainer
до нього
Також є вимога, на яку Focusable
встановлено властивість вашого контролю True
.
Це воно! Звучить легко, але, на жаль, TextEditor
клас позначений як внутрішній. Тому мені довелося написати обгортку для відображення:
class TextEditorWrapper
{
private static readonly Type TextEditorType = Type.GetType("System.Windows.Documents.TextEditor, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35");
private static readonly PropertyInfo IsReadOnlyProp = TextEditorType.GetProperty("IsReadOnly", BindingFlags.Instance | BindingFlags.NonPublic);
private static readonly PropertyInfo TextViewProp = TextEditorType.GetProperty("TextView", BindingFlags.Instance | BindingFlags.NonPublic);
private static readonly MethodInfo RegisterMethod = TextEditorType.GetMethod("RegisterCommandHandlers",
BindingFlags.Static | BindingFlags.NonPublic, null, new[] { typeof(Type), typeof(bool), typeof(bool), typeof(bool) }, null);
private static readonly Type TextContainerType = Type.GetType("System.Windows.Documents.ITextContainer, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35");
private static readonly PropertyInfo TextContainerTextViewProp = TextContainerType.GetProperty("TextView");
private static readonly PropertyInfo TextContainerProp = typeof(TextBlock).GetProperty("TextContainer", BindingFlags.Instance | BindingFlags.NonPublic);
public static void RegisterCommandHandlers(Type controlType, bool acceptsRichContent, bool readOnly, bool registerEventListeners)
{
RegisterMethod.Invoke(null, new object[] { controlType, acceptsRichContent, readOnly, registerEventListeners });
}
public static TextEditorWrapper CreateFor(TextBlock tb)
{
var textContainer = TextContainerProp.GetValue(tb);
var editor = new TextEditorWrapper(textContainer, tb, false);
IsReadOnlyProp.SetValue(editor._editor, true);
TextViewProp.SetValue(editor._editor, TextContainerTextViewProp.GetValue(textContainer));
return editor;
}
private readonly object _editor;
public TextEditorWrapper(object textContainer, FrameworkElement uiScope, bool isUndoEnabled)
{
_editor = Activator.CreateInstance(TextEditorType, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.CreateInstance,
null, new[] { textContainer, uiScope, isUndoEnabled }, null);
}
}
Я також створив SelectableTextBlock
похідне, TextBlock
що виконує кроки, зазначені вище:
public class SelectableTextBlock : TextBlock
{
static SelectableTextBlock()
{
FocusableProperty.OverrideMetadata(typeof(SelectableTextBlock), new FrameworkPropertyMetadata(true));
TextEditorWrapper.RegisterCommandHandlers(typeof(SelectableTextBlock), true, true, true);
// remove the focus rectangle around the control
FocusVisualStyleProperty.OverrideMetadata(typeof(SelectableTextBlock), new FrameworkPropertyMetadata((object)null));
}
private readonly TextEditorWrapper _editor;
public SelectableTextBlock()
{
_editor = TextEditorWrapper.CreateFor(this);
}
}
Іншим варіантом було б створити додане властивість для того, TextBlock
щоб дозволити вибір тексту за запитом. У цьому випадку, щоб знову відключити вибір, потрібно від'єднати a TextEditor
, використовуючи відбитковий еквівалент цього коду:
_editor.TextContainer.TextView = null;
_editor.OnDetach();
_editor = null;