0

我正在使用文本框中的超链接添加指向我的 WPF 应用程序的链接:

<TextBlock Margin="480,92,460,713" Height="24">
 <Hyperlink NavigateUri="{Binding MyLink}" RequestNavigate="Hyperlink_RequestNavigate">My Link</Hyperlink>
</TextBlock>

绑定“MyLink”不起作用。我需要使用的链接有一个带有变量的查询字符串,我需要在代码中动态更改。如果我尝试将链接硬编码到 XAML 中,我会收到错误,因为查询字符串有一个带有 & 符号的变量。

当我将它指向像谷歌这样的网站时,我的链接正在工作。但我需要在 c# 代码中设置它并且能够在查询字符串中设置我的变量。有没有办法做到这一点?谢谢!

4

1 回答 1

1

你正在做的应该工作......

要对此进行测试,请创建一个默认 WPF 应用程序并将以下代码放在 Window1.xaml 的网格中...

        <TextBlock>
             <Hyperlink NavigateUri="{Binding}" RequestNavigate="Hyperlink_RequestNavigate">My Link</Hyperlink>
        </TextBlock>

...在 Window1.xaml.cs 添加这个...

    public Window1()
    {
        InitializeComponent();

        this.DataContext = "whatever the heck i want";
    }

    private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
    {
        //e.Uri will display "whatever the heck i want" 
        //which would allow you to do whatever you want 
        //with the URL at that point

        Process.Start(new ProcessStartInfo("url_you_want_to_use"));
        e.Handled = true;
    }
于 2010-12-29T19:34:34.907 回答