富文本框内的链接?

时间:2012-03-24 20:25:24

标签: c# winforms hyperlink richtextbox rtf

我知道richtextbox可以检测链接(比如http://www.yahoo.com)但是有没有办法让我添加看起来像文本但链接的链接?在哪里可以选择链接的标签?例如,它显示为http://www.yahoo.com

而不是Click here to go to yahoo

编辑:忘了,我正在使用Windows窗体

编辑:是否有更好用的东西(比较容易格式化)?

4 个答案:

答案 0 :(得分:8)

当然可以通过在控件中调用一些WIN32功能来实现,但如果您正在寻找一些标准方法,请查看此帖子: Create hyperlink in TextBox control

关于不同的整合方式,有一些讨论。

问候

更新1: 最好的方法是遵循这个方法: http://msdn.microsoft.com/en-us/library/f591a55w.aspx

因为RichText框控件为“DetectUrls”提供了一些功能。然后,您可以非常轻松地处理点击的链接:

this.richTextBox1.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.richTextBox1_LinkClicked);

您可以通过扩展基类来简单地创建自己的RichTextBox控件 - 您可以覆盖所需的方法,例如DetectUrls。

答案 1 :(得分:8)

您可以在此处找到通过linkLabel在富文本框中添加链接的示例:

    LinkLabel link = new LinkLabel();
    link.Text = "something";
    link.LinkClicked += new LinkLabelLinkClickedEventHandler(this.link_LinkClicked);
    LinkLabel.Link data = new LinkLabel.Link();
    data.LinkData = @"C:\";
    link.Links.Add(data);
    link.AutoSize = true;
    link.Location =
        this.richTextBox1.GetPositionFromCharIndex(this.richTextBox1.TextLength);
    this.richTextBox1.Controls.Add(link);
    this.richTextBox1.AppendText(link.Text + "   ");
    this.richTextBox1.SelectionStart = this.richTextBox1.TextLength;

这是处理程序:

    private void link_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
    {
        System.Diagnostics.Process.Start(e.Link.LinkData.ToString());
    }

答案 2 :(得分:1)

我发现了一种可能不是最优雅的方式,但它只是几行代码并完成了工作。也就是说,想法是通过字体更改来模拟超链接外观,并通过检测鼠标指针所在的位置来模拟超链接行为。

代码:

public partial class Form1 : Form
{
    private Cursor defaultRichTextBoxCursor = Cursors.Default;
    private const string HOT_TEXT = "click here";
    private bool mouseOnHotText = false;

    // ... Lines skipped (constructor, etc.)

    private void Form1_Load(object sender, EventArgs e)
    {
        // save the right cursor for later
        this.defaultRichTextBoxCursor = richTextBox1.Cursor;

        // Output some sample text, some of which contains
        // the trigger string (HOT_TEXT)
        richTextBox1.SelectionFont = new Font("Calibri", 11, FontStyle.Underline);
        richTextBox1.SelectionColor = Color.Blue;
        // output "click here" with blue underlined font
        richTextBox1.SelectedText = HOT_TEXT + "\n";

        richTextBox1.SelectionFont = new Font("Calibri", 11, FontStyle.Regular);
        richTextBox1.SelectionColor = Color.Black;
        richTextBox1.SelectedText = "Some regular text";
    }

    private void richTextBox1_MouseMove(object sender, MouseEventArgs e)
    {
        int mousePointerCharIndex = richTextBox1.GetCharIndexFromPosition(e.Location);
        int mousePointerLine = richTextBox1.GetLineFromCharIndex(mousePointerCharIndex);
        int firstCharIndexInMousePointerLine = richTextBox1.GetFirstCharIndexFromLine(mousePointerLine);
        int firstCharIndexInNextLine = richTextBox1.GetFirstCharIndexFromLine(mousePointerLine + 1);
        if (firstCharIndexInNextLine < 0)
        {
            firstCharIndexInNextLine = richTextBox1.Text.Length;
        }

        // See where the hyperlink starts, as long as it's on the same line
        // over which the mouse is
        int hotTextStartIndex = richTextBox1.Find(
            HOT_TEXT, firstCharIndexInMousePointerLine, firstCharIndexInNextLine, RichTextBoxFinds.NoHighlight);

        if (hotTextStartIndex >= 0 && 
            mousePointerCharIndex >= hotTextStartIndex && mousePointerCharIndex < hotTextStartIndex + HOT_TEXT.Length)
        {
            // Simulate hyperlink behavior
            richTextBox1.Cursor = Cursors.Hand;
            mouseOnHotText = true;
        }
        else
        {
            richTextBox1.Cursor = defaultRichTextBoxCursor;
            mouseOnHotText = false;
        }
        toolStripStatusLabel1.Text = mousePointerCharIndex.ToString();
    }

    private void richTextBox1_MouseClick(object sender, MouseEventArgs e)
    {
        if (e.Button == MouseButtons.Left && mouseOnHotText)
        {
            // Insert your own URL here, to navigate to when "hot text" is clicked
            Process.Start("http://www.google.com");
        }
    }
}

为了改进代码,可以创建一种优雅的方式来映射多个&#34;热文本&#34;字符串到他们自己的链接URL(可能是Dictionary<K, V>)。另一项改进是将RichTextBox子类化为封装上述代码中的功能。

答案 3 :(得分:0)

标准的RichTextBox控件(假设您使用的是Windows窗体)公开了一组相当有限的功能,所以很遗憾,您需要做一些Win32互操作来实现这一点(沿着SendMessage(),CFM_LINK,EM_SETCHARFORMAT等行。 )。

您可以在此处的this answer上找到有关如何执行此操作的详细信息。