Why the text in the hyperlink is vertical aligned to the top and not goes to the same line as the label .
Any idea why ?
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="5">
<Label TextElement.FontSize="18"
FontWeight="Bold"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Name="LDOTextFilelable"
Content="LDO Text File:"
BorderThickness="0"/>
<TextBlock Height="39" TextElement.FontSize="18" FontFamily="Verdana" VerticalAlignment="Bottom"
Name="LDOTextFilelink" Padding="5,0,0,0" >
<Hyperlink Command="{Binding Path= SaveChangesCommand}" >
<TextBlock Text="{Binding Path=LdoFilePath}" Height="39" VerticalAlignment="Bottom"/>
</Hyperlink>
</TextBlock>
</StackPanel>

Thanks for help.
The preferred way to place hyperlinks in the text is following:
This way you’ll have no problems with alignment.
In WPF 4.0 you can replace the inner
TextBlockwith a simpleRun.