如何在AboutBox的描述字段中显示超链接

时间:2015-06-16 14:39:22

标签: c# winforms visual-studio-2013

我想在我的应用程序的描述字段中放置一个关于框的链接,该链接将用户引导到维基页面以获得更多帮助。我无法弄清楚如何使地址显示为链接。

我通过程序集信息属性设置描述。

enter image description here

1 个答案:

答案 0 :(得分:6)

您可以使用WinForms控件来实现您的目标:LinkLabel

只需在AboutBox布局中添加一个并双击即可。将创建其LinkClicked事件的处理程序,然后您可以使用Process.Start打开您网站的网址。

Example of LinkLabel in an AboutBox

public AboutBox1()
{
    InitializeComponent();
    this.Text = String.Format("About {0}", AssemblyTitle);
    this.labelProductName.Text = AssemblyProduct;
    this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion);
    this.labelCopyright.Text = AssemblyCopyright;
    this.labelCompanyName.Text = AssemblyCompany;
    this.textBoxDescription.Text = AssemblyDescription;
    this.Link.Text = "Visit our website!";
    this.Link.Tag = WpfApplication2.Properties.Resources.website;
}

private void Link_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
    System.Diagnostics.Process.Start((sender as LinkLabel).Tag.ToString());
}

就我而言,我已将URL保存为应用程序资源。我已将其与大会说明分开展示。

如果您希望链接显示在“装配说明”中,则会更加复杂......