我有一个文本块,我想将它绑定到带有超链接的文本。
我现在拥有的:
<TextBlock Grid.Row="1" TextWrapping="Wrap" xml:space="preserve"> To view the window click <Hyperlink Command="{Binding ShowWindow, ElementName=ThisDialog}">here</Hyperlink>.
我想要实现的目标:
<TextBlock Grid.Row="3" Text="{Binding Path=TextWithHyperlink}" .../>
这样我可以将我的文本内容保存在我的viewmodel中,但这可能吗?如果是的话我应该怎么做?