在 WPF window 中的 windows 表单 RichTextBox 控件中未显示所选文本

Selected text is not displayed in windows forms RichTextBox control in a WPF window

出于某种原因,我必须在 WPF Window:

中使用 Windows.Forms.RichTextBox 控件
<Window x:Class="TestSelectionRTBDansWPF.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
        xmlns:local="clr-namespace:TestSelectionRTBDansWPF"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid Margin="10">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition/>
        </Grid.RowDefinitions>
        <Button x:Name="btnSelect" Content="Select 10 first characters" Padding="10" Margin="0 0 0 10" Width="160" Click="BtnSelect_Click"/>
        <WindowsFormsHost Grid.Row="1">
            <wf:RichTextBox x:Name="rtb" Dock="Fill" Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis non mauris id ipsum auctor vehicula sed ut felis. Donec porttitor nisi eget ex porttitor, sed posuere sapien pretium."/>
        </WindowsFormsHost>
    </Grid>
</Window>

在某些时候,我不想 select 来自另一个线程的文本到我的 RichTextBox 中:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    private void BtnSelect_Click(object sender, RoutedEventArgs e)
    {
        Thread th = new Thread(() =>
        {
            Thread.Sleep(2000);
            SelectText(0, 10);
        });
        th.Start();
    }

    delegate void ParametrizedMethodInvoker5(int arg1, int arg2);
    public void SelectText(int start, int length)
    {
        if (!Dispatcher.CheckAccess())
        {
            Dispatcher.Invoke(new ParametrizedMethodInvoker5(SelectText), start, length);
            return;
        }
        rtb.SelectionStart = start;
        rtb.SelectionLength = length;
        MessageBox.Show("Selection done!\nSelected text: " + rtb.SelectedText);
    }
}

消息框正确显示 selected 文本,但在显示的 RichTextBox 控件中没有突出显示任何内容。 编辑:使用鼠标或键盘时,selection 工作得很好。

在写这个 post 时,我意识到添加对 System.Drawing 的引用并设置 rtb.SelectionBackColor 属性 就可以了,尽管它看起来更像是一个补丁不是一个真正的解决方案,因为我将不得不处理 SelectionChanged 以重置先前 selected 文本的背景颜色。

有人对此有任何线索吗?

选择有效,但 RichTextBox 没有焦点。您只需通过以下方式将焦点设置到 RichTextBox rtb.Focus(); 通过 Tab 键手动选择或聚焦控件后。