这是我的 XAML 标记:
<TextBlock>
<Hyperlink Click="InstrumentFile_Click">
<Run Text="{Binding InstrumentFile}"/>
</Hyperlink>
</TextBlock>
C#:
private void InstrumentFile_Click(object sender, RoutedEventArgs e)
{
Hyperlink link = sender as Hyperlink;
if (link != null)
{
//need to get text here
}
}
我想获取绑定到 Run 的文本。我怎样才能得到?谢谢!