你可以使用richtextbox selectionchanged来寻找doubleclick事件吗?

时间:2013-05-08 00:51:37

标签: c# silverlight richtextbox

一旦双击一个单词,我试图找到一种方法来获取richtextbox的选定文本。 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);
}

在选择更改中,我想检查是否有双击,然后对突出显示的单词执行某些操作。

1 个答案:

答案 0 :(得分:0)

我建议使用鼠标DoubleClick事件,然后将选择与存储在某个变量中的前一个选项进行比较。这似乎比尝试从DoubleClick检测SelectionChanged事件更合理。 Rgds,AB