I really couldn’t find how to resolve the following problem. I have got:
<TextBlock Style="{StaticResource HoverBox}" HorizontalAlignment="Left" Margin="0,0,5,0" Name="lblAuthFullPath" VerticalAlignment="Top" Width="575" TextWrapping="Wrap" Padding="5,0,0,0"
MouseLeftButtonDown="lblAuthFullPath_MouseLeftButtonDown">
<TextBlock.Text>
<MultiBinding StringFormat="{}{0}{1}{2}">
<Binding Path="Text" ElementName="tbxAuthHost" />
<Binding Path="Text" ElementName="tbxAuthWebsiteName" />
<Binding Path="Text" ElementName="tbxWebServicesAuthentication" />
</MultiBinding>
</TextBlock.Text>
</TextBlock>
And it works fine.
I want to use <Hyperlink> within <TextBlock>…
How I can adjust <MultiBinding> to do the same thing for <Hyperlink> instead of <TextBlock>?
Is it possible?
Hyperlinkscan containRuns, so you might want to apply the binding to theTextof aRunwithin theHyperlink