Todas as respostas aqui estão apenas usando TextBox
ou tentando implementar a seleção de texto manualmente, o que leva a um desempenho ruim ou a um comportamento não nativo (sinal de intermitência TextBox
, nenhum suporte de teclado em implementações manuais etc.)
Depois de horas pesquisando e lendo o código fonte do WPF , descobri uma maneira de ativar a seleção de texto WPF nativa para TextBlock
controles (ou realmente quaisquer outros controles). A maioria das funcionalidades relacionadas à seleção de texto é implementada na System.Windows.Documents.TextEditor
classe do sistema.
Para habilitar a seleção de texto para seu controle, você precisa fazer duas coisas:
Ligue TextEditor.RegisterCommandHandlers()
uma vez para registrar os manipuladores de eventos da classe
Crie uma instância de TextEditor
para cada instância da sua classe e passe a instância subjacente da sua System.Windows.Documents.ITextContainer
para ela
Também é necessário que a Focusable
propriedade do seu controle esteja definida True
.
É isso! Parece fácil, mas infelizmente a TextEditor
classe está marcada como interna. Então eu tive que escrever um invólucro de reflexão:
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);
}
}
Eu também criei um SelectableTextBlock
derivado TextBlock
que executa as etapas mencionadas acima:
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);
}
}
Outra opção seria criar uma propriedade anexada para TextBlock
ativar a seleção de texto sob demanda. Nesse caso, para desativar a seleção novamente, é necessário desanexar a TextEditor
usando o equivalente de reflexão deste código:
_editor.TextContainer.TextView = null;
_editor.OnDetach();
_editor = null;