0

一旦双击一个单词,我正在尝试找到一种方法来获取richtextbox的选定文本。富文本框的设置如下:

<RichTextBox x:Name="rtbStoryLine" Grid.Column="1" Grid.Row="3" Grid.RowSpan="4" Margin="0,15,16,17" FontFamily="Arial" FontSize="25" IsReadOnly="True" MaxWidth="700" MaxHeight="130" ToolTipService.ToolTip="This box displays the selected line below." SelectionChanged="rtbStoryLine_SelectionChanged" />

我将文本添加到后面的代码中,例如:

public void AddTextt(string text2Add)
{
    Paragraph p = new Paragraph();
    Run r = new Run();
    r.Text = text2Add;
    p.Inlines.Add(r);
    rtbStoryLine.Blocks.Clear();
    rtbStoryLine.Blocks.Add(p);
}

在选择更改中,我想检查是否有双击,然后对突出显示的单词做一些事情。

4

1 回答 1

0

我建议使用鼠标DoubleClick事件,然后将选择与存储在某个变量中的前一个进行比较。这似乎比试图DoubleClickSelectionChanged. Rgds, AB

于 2013-05-08T01:06:05.770 回答