2
這裏是我的代碼:如何用文字添加超鏈接的文本框中
<TextBlock TextWrapping="Wrap" TextAlignment="Left">
<TextBox IsReadOnly="True" BorderThickness="0" TextWrapping="Wrap">
Please enter your details for login: questions follow the link
</TextBox>
<Hyperlink NavigateUri="https:" RequestNavigate="Hyperlink_RequestNavigate">
Reset Password
</Hyperlink>
</TextBlock>
文本框不會讓我設置文本超鏈接。我需要將超鏈接保留在文本框之外,這會創建一個新行。但我希望超鏈接串聯到文本。
我在TextBlock中使用TextBox的原因是爲了使文本可選。
因爲上面堆疊面板水平地對準元件它不會達到要求。我有窗口大小問題,所以文本和超鏈接應該進入新行。 – user1118468
@ user1118468然後設置StackPanel Orientation =「Vertical」 – Kcvin