一旦双击一个单词,我正在尝试找到一种方法来获取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);
}
在选择更改中,我想检查是否有双击,然后对突出显示的单词做一些事情。