これは私の 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にバインドされたテキストを取得したい。どうすれば入手することができますか?ありがとう!