Buradaki tüm cevaplar sadece bir TextBox
veya metin seçimini manuel olarak uygulamaya çalışıyor, bu da düşük performansa veya yerel olmayan davranışlara (yanıp sönen işaretTextBox
, manuel uygulamalarda klavye desteği yok vb.)
Saatlerce kazma ve WPF kaynak kodunu okuduktan sonra , bunun yerine TextBlock
kontroller (veya gerçekten diğer kontroller) için yerel WPF metin seçimini etkinleştirmenin bir yolunu keşfettim . Metin seçimiyle ilgili işlevlerin çoğu,System.Windows.Documents.TextEditor
sistem sınıfında uygulanır.
Kontrolünüz için metin seçimini etkinleştirmek için iki şey yapmanız gerekir:
TextEditor.RegisterCommandHandlers()
Sınıf olay işleyicilerini kaydetmek için bir kez arayın
Bir örneğini oluşturma TextEditor
sınıfın her örneği için ve aramalarınızdan yatan örneğini geçmesi System.Windows.Documents.ITextContainer
buna
Ayrıca, denetiminizin Focusable
mülkününTrue
.
Budur! Kulağa kolay geliyor, ancak maalesef TextEditor
sınıf dahili olarak işaretleniyor. Bu yüzden etrafına bir yansıma sarıcı yazmak zorunda kaldım:
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);
}
}
Ayrıca yukarıda belirtilen adımları alır bir SelectableTextBlock
türetilmiş yarattı 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);
}
}
Başka bir seçenek TextBlock
, istek üzerine metin seçimini etkinleştirmek için ekli bir özellik oluşturmak olacaktır . Bu durumda, seçimi tekrar devre dışı bırakmak için TextEditor
, bu kodun yansıma eşdeğerini kullanarak a'nın ayrılması gerekir :
_editor.TextContainer.TextView = null;
_editor.OnDetach();
_editor = null;