How I can adjust WPF Hyperlink within GridViewColumn.CellTemplate?

Special thanks to @H.B. !!
Here is the solution
<GridViewColumn Width="Auto" Header="URL" >
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Name="urlToContent" MinWidth="100" Width="Auto">
<Hyperlink NavigateUri="{Binding Path=URL}" Name="hlkURL" RequestNavigate="OpenPageRequestNavigate">
<TextBlock Text="{Binding Path=URL}"/>
</Hyperlink>
</TextBlock>
</DataTemplate>
</GridViewColumn.CellTemplate> </GridViewColumn
Runinstead of aTextBlockinside theHyperlink...TextBlockwill also automatially create anInlineUIContainerbecause the contents of Hyperlinks are inlines (flow content) and not UI-Elements,TextBlocksand other controls things are "not meant to be there".