是否有可能通过一整排为DataGridTemplateColumn的超链接参数?
<my:DataGridTemplateColumn Header="Name">
<my:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock>
<Hyperlink Foreground="Black" TextDecorations="None">
<Run Text="{Binding Name}" />
</Hyperlink>
</TextBlock>
</DataTemplate>
</my:DataGridTemplateColumn.CellTemplate>
</my:DataGridTemplateColumn>